diff options
author | Yunzhong Gao <Yunzhong_Gao@playstation.sony.com> | 2015-11-10 18:52:48 +0000 |
---|---|---|
committer | Yunzhong Gao <Yunzhong_Gao@playstation.sony.com> | 2015-11-10 18:52:48 +0000 |
commit | ef436f068ce7f6243d153f75f41bcdc4be407595 (patch) | |
tree | 506a40cf7e00d00597ef4e6350b3724a516579a3 /llvm/tools | |
parent | aa118e299c400cbbf3d1fa7914edac5cc21f3b25 (diff) | |
download | bcm5719-llvm-ef436f068ce7f6243d153f75f41bcdc4be407595.tar.gz bcm5719-llvm-ef436f068ce7f6243d153f75f41bcdc4be407595.zip |
llvm-lto: trivial spelling changes to distinguish custom diagnostic handler and
default diagnostic handler.
Differential Revision: http://reviews.llvm.org/D14520
llvm-svn: 252633
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/llvm-lto/llvm-lto.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/tools/llvm-lto/llvm-lto.cpp b/llvm/tools/llvm-lto/llvm-lto.cpp index cdfe97f4907..04050c54870 100644 --- a/llvm/tools/llvm-lto/llvm-lto.cpp +++ b/llvm/tools/llvm-lto/llvm-lto.cpp @@ -101,6 +101,7 @@ struct ModuleInfo { static void handleDiagnostics(lto_codegen_diagnostic_severity_t Severity, const char *Msg, void *) { + errs() << "llvm-lto: "; switch (Severity) { case LTO_DS_NOTE: errs() << "note: "; |