diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/exception-label.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/exception-label.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/exception-label.ll b/llvm/test/CodeGen/X86/exception-label.ll index cafa1e630b9..2270d2da180 100644 --- a/llvm/test/CodeGen/X86/exception-label.ll +++ b/llvm/test/CodeGen/X86/exception-label.ll @@ -8,13 +8,13 @@ declare void @g() -define void @f() { +define void @f() personality i8* bitcast (void ()* @g to i8*) { bb0: call void asm ".Lexception0:", ""() invoke void @g() to label %bb2 unwind label %bb1 bb1: - landingpad { i8*, i32 } personality i8* bitcast (void ()* @g to i8*) + landingpad { i8*, i32 } catch i8* null br label %bb2 |