Skip to content

Commit b36be2f

Browse files
committed
1 parent 63bdcaf commit b36be2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/test/tools/llvm-ar/default-xcoff.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
; RUN: echo "test big archive" > %t.txt
88
; RUN: not llvm-ar cr %t.ar %t.txt 2>&1 | FileCheck %s
99

10-
; CHECK: unsupported big AIX write operation
10+
; CHECK: big archive writer operation on AIX not yet supported

llvm/tools/llvm-ar/llvm-ar.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -945,7 +945,7 @@ static void performWriteOperation(ArchiveOperation Operation,
945945
Kind = !NewMembers.empty() ? getKindFromMember(NewMembers.front())
946946
: getDefaultForHost();
947947
if (Kind == object::Archive::K_AIXBIG)
948-
fail("unsupported big AIX write operation");
948+
fail("big archive writer operation on AIX not yet supported");
949949
break;
950950
case GNU:
951951
Kind = object::Archive::K_GNU;

0 commit comments

Comments
 (0)