mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-01 09:18:45 +00:00
llvm-lto: trivial spelling changes to distinguish custom diagnostic handler and
default diagnostic handler. Differential Revision: http://reviews.llvm.org/D14520 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252633 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a800198c3b
commit
a987cc630d
@ -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