summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/catch-undef-behavior.cpp
diff options
context:
space:
mode:
authorFilipe Cabecinhas <me@filcab.net>2013-08-08 01:24:29 +0000
committerFilipe Cabecinhas <me@filcab.net>2013-08-08 01:24:29 +0000
commit9793fe99de5ab92162cb70a7d2584c1de0952d73 (patch)
tree5b82ffdae3cc34bdaf82147c57d7e06ce3055360 /test/CodeGenCXX/catch-undef-behavior.cpp
parentce744175b827f855c381eb0bdcdceceda86c87cd (diff)
catch-undefined-behavior.cpp: Remove names that don't appear in every build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@187952 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/catch-undef-behavior.cpp')
-rw-r--r--test/CodeGenCXX/catch-undef-behavior.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGenCXX/catch-undef-behavior.cpp b/test/CodeGenCXX/catch-undef-behavior.cpp
index 5e20297eb4..709bbb2921 100644
--- a/test/CodeGenCXX/catch-undef-behavior.cpp
+++ b/test/CodeGenCXX/catch-undef-behavior.cpp
@@ -347,14 +347,14 @@ void downcast_pointer(B *b) {
// CHECK: [[SUB:%[.a-z0-9]*]] = getelementptr i8* {{.*}}, i64 -16
// CHECK-NEXT: [[C:%[0-9]*]] = bitcast i8* [[SUB]] to %class.C*
// null check goes here
- // CHECK: [[FROM_PHI:%[0-9]*]] = phi %class.C* [ [[C]], %cast.notnull ], {{.*}}
+ // CHECK: [[FROM_PHI:%[0-9]*]] = phi %class.C* [ [[C]], {{.*}} ], {{.*}}
// Objectsize check goes here
// CHECK: [[C_INT:%[0-9]*]] = ptrtoint %class.C* [[FROM_PHI]] to i64
// CHECK-NEXT: [[MASKED:%[0-9]*]] = and i64 [[C_INT]], 15
// CHECK-NEXT: [[TEST:%[0-9]*]] = icmp eq i64 [[MASKED]], 0
// AND the alignment test with the objectsize test.
// CHECK-NEXT: [[AND:%[0-9]*]] = and i1 {{.*}}, [[TEST]]
- // CHECK-NEXT: br i1 [[AND]], label %cont, label %handler.type_mismatch
+ // CHECK-NEXT: br i1 [[AND]]
}
// CHECK-LABEL: define void @_Z18downcast_referenceR1B(%class.B* %b)
@@ -369,7 +369,7 @@ void downcast_reference(B &b) {
// CHECK-NEXT: [[TEST:%[0-9]*]] = icmp eq i64 [[MASKED]], 0
// AND the alignment test with the objectsize test.
// CHECK-NEXT: [[AND:%[0-9]*]] = and i1 {{.*}}, [[TEST]]
- // CHECK-NEXT: br i1 [[AND]], label %cont, label %handler.type_mismatch
+ // CHECK-NEXT: br i1 [[AND]]
}
// CHECK: attributes [[NR_NUW]] = { noreturn nounwind }