diff options
Diffstat (limited to 'llvm/tools/llvm-cov/TestingSupport.cpp')
-rw-r--r-- | llvm/tools/llvm-cov/TestingSupport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-cov/TestingSupport.cpp b/llvm/tools/llvm-cov/TestingSupport.cpp index e07abdbd17f..16a1c266529 100644 --- a/llvm/tools/llvm-cov/TestingSupport.cpp +++ b/llvm/tools/llvm-cov/TestingSupport.cpp @@ -33,7 +33,7 @@ int convertForTestingMain(int argc, const char *argv[]) { if (!ObjErr) { std::string Buf; raw_string_ostream OS(Buf); - logAllUnhandledErrors(ObjErr.takeError(), OS, ""); + logAllUnhandledErrors(ObjErr.takeError(), OS); OS.flush(); errs() << "error: " << Buf; return 1; |