diff --git a/test/Object/ar-error.test b/test/Object/ar-error.test new file mode 100644 index 00000000000..9b8ddbd78fb --- /dev/null +++ b/test/Object/ar-error.test @@ -0,0 +1,5 @@ +Test if we get a proper error with a filename that doesn't exist + +RUN: not llvm-ar r %t.out.a sparkle.o %t 2>&1 | FileCheck %s + +CHECK: llvm-ar{{(.exe|.EXE)?}}: sparkle.o: No such file or directory diff --git a/tools/llvm-ar/llvm-ar.cpp b/tools/llvm-ar/llvm-ar.cpp index db95674d36a..ed7291ea0c9 100644 --- a/tools/llvm-ar/llvm-ar.cpp +++ b/tools/llvm-ar/llvm-ar.cpp @@ -516,7 +516,7 @@ computeInsertAction(ArchiveOperation Operation, // We could try to optimize this to a fstat, but it is not a common // operation. sys::fs::file_status Status; - failIfError(sys::fs::status(*MI, Status)); + failIfError(sys::fs::status(*MI, Status), *MI); if (Status.getLastModificationTime() < I->getLastModified()) { if (PosName.empty()) return IA_AddOldMember;