Addressed post-commit comment https://reviews.llvm.org/D122746#inline-1175831
authorzhijian <zhijian@ca.ibm.com>
Fri, 1 Apr 2022 18:10:22 +0000 (14:10 -0400)
committerzhijian <zhijian@ca.ibm.com>
Fri, 1 Apr 2022 18:10:22 +0000 (14:10 -0400)
llvm/test/tools/llvm-ar/default-xcoff.test
llvm/tools/llvm-ar/llvm-ar.cpp

index 25c0a4a..bfffc3e 100644 (file)
@@ -7,4 +7,4 @@
 ; RUN: echo "test big archive" > %t.txt
 ; RUN: not llvm-ar cr %t.ar %t.txt 2>&1 | FileCheck %s
 
-; CHECK: unsupported big AIX write operation
+; CHECK: big archive writer operation on AIX not yet supported
index 3d4964f..0d87e25 100644 (file)
@@ -945,7 +945,7 @@ static void performWriteOperation(ArchiveOperation Operation,
       Kind = !NewMembers.empty() ? getKindFromMember(NewMembers.front())
                                  : getDefaultForHost();
     if (Kind == object::Archive::K_AIXBIG)
-      fail("unsupported big AIX write operation");
+      fail("big archive writer operation on AIX not yet supported");
     break;
   case GNU:
     Kind = object::Archive::K_GNU;