diff options
author | Chris Lattner <sabre@nondot.org> | 2010-07-20 21:34:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-07-20 21:34:36 +0000 |
commit | 94027202e0b3f23ceb9fc2f9b9e3d51fe42ed3bc (patch) | |
tree | 0b57eb070cc515a640fe0700c10439d6c310063d /clang/test/CodeGenCXX/operator-new.cpp | |
parent | 2be2074f7521a83ca6ba2972134f2411e444af64 (diff) | |
download | bcm5719-llvm-94027202e0b3f23ceb9fc2f9b9e3d51fe42ed3bc.tar.gz bcm5719-llvm-94027202e0b3f23ceb9fc2f9b9e3d51fe42ed3bc.zip |
don't demand names to be on IR.
llvm-svn: 108937
Diffstat (limited to 'clang/test/CodeGenCXX/operator-new.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/operator-new.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/operator-new.cpp b/clang/test/CodeGenCXX/operator-new.cpp index b108d27ab92..df3c114a140 100644 --- a/clang/test/CodeGenCXX/operator-new.cpp +++ b/clang/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( } |