From: Renato Golin Date: Tue, 27 May 2014 17:01:21 +0000 (+0000) Subject: Fix pr19841, bb are also unnamed X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=08d469b693bdf852fb0e1c2b1c81d9defb60efd4;p=clang Fix pr19841, bb are also unnamed git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@209668 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/pr19841.cpp b/test/CodeGen/pr19841.cpp index 8b7f7b0749..1357be27ae 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: %{{.*}} = phi [0 x i8]* [ bitcast ([1 x i8]* @_ZN6Common1A1bE to [0 x i8]*), %cond.true ], [ %{{.*}}, %cond.false ] +// CHECK: %{{.*}} = phi [0 x i8]* [ bitcast ([1 x i8]* @_ZN6Common1A1bE to [0 x i8]*), %{{.*}} ], [ %{{.*}}, %{{.*}} ] } const unsigned char A::b[] = { 0 }; }