From 345c9cc5f41881f3f76fed49ce06986e4f6e226b Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Tue, 27 May 2014 16:51:36 +0000 Subject: [PATCH] Fix pr19841.cpp on release mode llvm-svn: 209666 --- clang/test/CodeGen/pr19841.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/CodeGen/pr19841.cpp b/clang/test/CodeGen/pr19841.cpp index 4350625..8b7f7b0 100644 --- a/clang/test/CodeGen/pr19841.cpp +++ b/clang/test/CodeGen/pr19841.cpp @@ -22,7 +22,7 @@ A::A() { ? b : _highlightColorTableVGA; // Make sure the PHI value is casted correctly to the PHI type -// CHECK: %cond-lvalue = phi [0 x i8]* [ bitcast ([1 x i8]* @_ZN6Common1A1bE to [0 x i8]*), %cond.true ], [ %_highlightColorTableVGA, %cond.false ] +// CHECK: %{{.*}} = phi [0 x i8]* [ bitcast ([1 x i8]* @_ZN6Common1A1bE to [0 x i8]*), %cond.true ], [ %{{.*}}, %cond.false ] } const unsigned char A::b[] = { 0 }; } -- 2.7.4