diff options
author | John McCall <rjmccall@apple.com> | 2011-05-28 21:13:02 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-05-28 21:13:02 +0000 |
commit | 9b382dde92659070086dd5245d3484f49c0c14f7 (patch) | |
tree | 6bbbe9fb5ec88d856f570196d01bb15b5b88e78f /clang/test/CodeGenCXX/threadsafe-statics-exceptions.cpp | |
parent | 6528a5494668a30172e6aa4b01acd8f574f917d8 (diff) | |
download | bcm5719-llvm-9b382dde92659070086dd5245d3484f49c0c14f7.tar.gz bcm5719-llvm-9b382dde92659070086dd5245d3484f49c0c14f7.zip |
Convert Clang over to resuming from landing pads with llvm.eh.resume.
It's quite likely that this will explode, but I need to know how. :)
llvm-svn: 132269
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..aa79a4f6dd3 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 @llvm.eh.resume( // CHECK: unreachable } |