From 08d469b693bdf852fb0e1c2b1c81d9defb60efd4 Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Tue, 27 May 2014 17:01:21 +0000 Subject: [PATCH] Fix pr19841, bb are also unnamed git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@209668 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/pr19841.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }; } -- 2.40.0