1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

llvm-lto: trivial spelling changes to distinguish custom diagnostic handler and

default diagnostic handler.

Differential Revision: http://reviews.llvm.org/D14520

llvm-svn: 252633
This commit is contained in:
Yunzhong Gao 2015-11-10 18:52:48 +00:00
parent 35ac43f257
commit a217d2f618
2 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,7 @@
; RUN: llvm-lto -pass-remarks=inline -use-diagnostic-handler \
; RUN: -exported-symbol _main -o %t.o %t.bc 2>&1 | \
; RUN: FileCheck %s -allow-empty -check-prefix=REMARKS
; RUN: FileCheck %s -allow-empty -check-prefix=REMARKS_DH
; RUN: llvm-nm %t.o | FileCheck %s -check-prefix NM
; Confirm that -pass-remarks are not printed by default.
@ -24,7 +24,9 @@
; RUN: llvm-nm %t.o | FileCheck %s -check-prefix NM
; REMARKS: remark:
; REMARKS_DH: llvm-lto: remark:
; CHECK-NOT: remark:
; CHECK-NOT: llvm-lto:
; NM-NOT: foo
; NM: main

View File

@ -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: ";