From: Renato Golin Date: Tue, 27 May 2014 16:51:36 +0000 (+0000) Subject: Fix pr19841.cpp on release mode X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b0e81a754a9b48df2b29fc323e541796c7a848e5;p=clang Fix pr19841.cpp on release mode git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@209666 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/pr19841.cpp b/test/CodeGen/pr19841.cpp index 4350625d18..8b7f7b0749 100644 --- a/test/CodeGen/pr19841.cpp +++ b/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 }; }