aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/threadsafe-statics-exceptions.cpp
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2010-08-10 18:51:44 +0000
committerJohn McCall <rjmccall@apple.com>2010-08-10 18:51:44 +0000
commit224124c7b85596157201a67a7ba12d2b0f5c153c (patch)
tree5e5402e686f062648b0ab3f4bfd61e958542e1fe /test/CodeGenCXX/threadsafe-statics-exceptions.cpp
parent17c6c855754be4097572c9a8d9da805f16a37e97 (diff)
When initializing a static local, pop the guard-abort EH cleanup after
the variable is fully initialized. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110704 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/threadsafe-statics-exceptions.cpp')
-rw-r--r--test/CodeGenCXX/threadsafe-statics-exceptions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenCXX/threadsafe-statics-exceptions.cpp b/test/CodeGenCXX/threadsafe-statics-exceptions.cpp
index 17c10301d4..c91590fd58 100644
--- a/test/CodeGenCXX/threadsafe-statics-exceptions.cpp
+++ b/test/CodeGenCXX/threadsafe-statics-exceptions.cpp
@@ -17,7 +17,7 @@ void f() {
static X x;
// CHECK: call i8* @__cxa_allocate_exception
- // CHECK: invoke void @__cxa_throw
+ // CHECK: call void @__cxa_throw
throw Y();
// Finally, the landing pad.