aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-07-20 21:34:36 +0000
committerChris Lattner <sabre@nondot.org>2010-07-20 21:34:36 +0000
commitc11787fc247ec49f7c651be4b2c1be096cf4970a (patch)
treed43091bc62f4b96dfb672135bb0d6dab98a3cd3a
parent962312bf0c7b45e73acfb9af4acd172f75bfc916 (diff)
don't demand names to be on IR.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108937 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGenCXX/operator-new.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/CodeGenCXX/operator-new.cpp b/test/CodeGenCXX/operator-new.cpp
index b108d27ab9..df3c114a14 100644
--- a/test/CodeGenCXX/operator-new.cpp
+++ b/test/CodeGenCXX/operator-new.cpp
@@ -23,8 +23,7 @@ void *f2(long N) {
// SANE: call{{.*}}@llvm.umul.with.overflow
// SANE: extractvalue
-// SANE: br i1{{.*}}, label %overflow, label %no_overflow
-
-// SANE: = phi {{.*}} [ {{.*}}, %entry ], [ -1, %overflow ]
+// SANE: br i1
+// SANE: = phi {{.*}} [ {{.*}} ], [ -1,
// SANE: call noalias i8* @_Znaj(
}