diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-03-31 03:07:23 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-03-31 03:07:23 +0000 |
commit | 4628282face59b60d124b5289bb134e15525ce0e (patch) | |
tree | 2707fde5deb9051b8b743826bdd4939dd5e21f91 /llvm/tools/opt/opt.cpp | |
parent | 1819953db52c8e5bc7790d3dd20ad342bf77a161 (diff) | |
download | bcm5719-llvm-4628282face59b60d124b5289bb134e15525ce0e.tar.gz bcm5719-llvm-4628282face59b60d124b5289bb134e15525ce0e.zip |
tools: Unify how verifyModule() is called
Unify the error messages for the various tools when `verifyModule()`
fails on an input module. The "brave new way" is:
lltool: path/to/input.ll: error: input module is broken!
llvm-svn: 233667
Diffstat (limited to 'llvm/tools/opt/opt.cpp')
-rw-r--r-- | llvm/tools/opt/opt.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/tools/opt/opt.cpp b/llvm/tools/opt/opt.cpp index 86fbed70036..c64e907af22 100644 --- a/llvm/tools/opt/opt.cpp +++ b/llvm/tools/opt/opt.cpp @@ -354,7 +354,8 @@ int main(int argc, char **argv) { // pass pipelines. Otherwise we can crash on broken code during // doInitialization(). if (!NoVerify && verifyModule(*M, &errs())) { - errs() << argv[0] << ": " << InputFilename << ": error: does not verify\n"; + errs() << argv[0] << ": " << InputFilename + << ": error: input module is broken!\n"; return 1; } |