diff options
author | David Majnemer <david.majnemer@gmail.com> | 2015-06-17 20:53:19 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2015-06-17 20:53:19 +0000 |
commit | fcbdb6ea5888f61e1ca566629c03fa6de0719750 (patch) | |
tree | 6eec9f15255c02cdd09e1fe40c355e80ef6fc4c6 /clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp | |
parent | 7fddeccb8b4694002e3a2130d4bce07d628b1db2 (diff) | |
download | bcm5719-llvm-fcbdb6ea5888f61e1ca566629c03fa6de0719750.tar.gz bcm5719-llvm-fcbdb6ea5888f61e1ca566629c03fa6de0719750.zip |
Update clang to take into account the changes to personality fns
llvm-svn: 239941
Diffstat (limited to 'clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp b/clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp index 70decc98a10..41325fa64fc 100644 --- a/clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp +++ b/clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp @@ -8,6 +8,7 @@ struct X { struct Y { }; // CHECK-LABEL: define void @_Z1fv +// CHECK-SAME: personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) void f() { // CHECK: call i32 @__cxa_guard_acquire(i64* @_ZGVZ1fvE1x) // CHECK: invoke void @_ZN1XC1Ev @@ -21,7 +22,7 @@ void f() { throw Y(); // Finally, the landing pad. - // CHECK: landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) + // CHECK: landingpad { i8*, i32 } // CHECK: cleanup // CHECK: call void @__cxa_guard_abort(i64* @_ZGVZ1fvE1x) // CHECK: resume { i8*, i32 } |