Skip to content

Commit

Permalink
[llvm-reduce] Print extra newline when encountering unknown pass
Browse files Browse the repository at this point in the history
  • Loading branch information
aeubanks committed Nov 9, 2021
1 parent 9b2da14 commit b394ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/tools/llvm-reduce/DeltaManager.cpp
Expand Up @@ -87,7 +87,7 @@ static void runDeltaPassName(TestRunner &Tester, StringRef PassName) {
DELTA_PASSES
}
#undef DELTA_PASS
errs() << "unknown pass \"" << PassName << "\"";
errs() << "unknown pass \"" << PassName << "\"\n";
exit(1);
}

Expand Down

0 comments on commit b394ba5

Please sign in to comment.