diff options
author | John McCall <rjmccall@apple.com> | 2011-05-27 20:01:14 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-05-27 20:01:14 +0000 |
commit | 63fb333fa405dbebcf8a3596eafb01657ec17577 (patch) | |
tree | 331d9961dd0709c13f347f1b334331e381fc92c8 /clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp | |
parent | 23f6b83d6f5375ee586736dda05d4f5517df336a (diff) | |
download | bcm5719-llvm-63fb333fa405dbebcf8a3596eafb01657ec17577.tar.gz bcm5719-llvm-63fb333fa405dbebcf8a3596eafb01657ec17577.zip |
Implement a new, much improved version of the cleanup hack. We just need
to be careful to emit landing pads that are always prepared to handle a
cleanup path. This is correct mostly because of the fix to the LLVM
inliner, r132200.
llvm-svn: 132209
Diffstat (limited to 'clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp b/clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp index 0bd810eeca5..06ebe0a71b6 100644 --- a/clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp +++ b/clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp @@ -24,6 +24,6 @@ void f() { // CHECK: call i8* @llvm.eh.exception() // CHECK: call i32 (i8*, i8*, ...)* @llvm.eh.selector // CHECK: call void @__cxa_guard_abort(i64* @_ZGVZ1fvE1x) - // CHECK: call void @_Unwind_Resume_or_Rethrow + // CHECK: call void @_Unwind_Resume( // CHECK: unreachable } |