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:
parent
35ac43f257
commit
a217d2f618
@ -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
|
||||
|
||||
|
@ -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: ";
|
||||
|
Loading…
Reference in New Issue
Block a user