mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
[Debugify] Avoid printing unnecessary square braces, NFC
llvm-svn: 333236
This commit is contained in:
parent
5ca2a16793
commit
44bf29bed5
@ -84,6 +84,6 @@ define weak_odr zeroext i1 @baz() {
|
||||
; CHECK-FAIL: WARNING: Missing line 3
|
||||
; CHECK-FAIL: WARNING: Missing line 4
|
||||
; CHECK-FAIL: ERROR: Missing variable 1
|
||||
; CHECK-FAIL: CheckModuleDebugify [{{.*}}]: FAIL
|
||||
; CHECK-FAIL: CheckModuleDebugify: FAIL
|
||||
|
||||
; PASS: CheckModuleDebugify [{{.*}}]: PASS
|
||||
; PASS: CheckModuleDebugify: PASS
|
||||
|
@ -2,7 +2,7 @@
|
||||
; RUN: opt < %s -debugify -mem2reg -check-debugify -S 2>&1 | FileCheck %s
|
||||
|
||||
; CHECK-NOT: alloca
|
||||
; CHECK: CheckModuleDebugify [{{.*}}]: PASS
|
||||
; CHECK: CheckModuleDebugify: PASS
|
||||
|
||||
define double @testfunc(i32 %i, double %j) {
|
||||
%I = alloca i32 ; <i32*> [#uses=4]
|
||||
|
@ -191,8 +191,10 @@ bool checkDebugifyMetadata(Module &M,
|
||||
errs() << "ERROR: Missing variable " << Idx + 1 << "\n";
|
||||
HasErrors |= MissingVars.count() > 0;
|
||||
|
||||
errs() << Banner << " [" << NameOfWrappedPass << "]: "
|
||||
<< (HasErrors ? "FAIL" : "PASS") << '\n';
|
||||
errs() << Banner;
|
||||
if (!NameOfWrappedPass.empty())
|
||||
errs() << " [" << NameOfWrappedPass << "]";
|
||||
errs() << ": " << (HasErrors ? "FAIL" : "PASS") << '\n';
|
||||
if (HasErrors) {
|
||||
errs() << "Module IR Dump\n";
|
||||
M.print(errs(), nullptr, false);
|
||||
|
Loading…
x
Reference in New Issue
Block a user