Move the personality function from LandingPadInst to Function
[oota-llvm.git] / test / CodeGen / Generic / 2007-02-25-invoke.ll
index 7850cec35f9ef5d50697ddd4ab5d61a8274825d1..4ca280d1587eb407a946b5a3a6f972f00b0da775 100644 (file)
@@ -3,12 +3,12 @@
 ; PR1224
 
 declare i32 @test()
-define i32 @test2() {
+define i32 @test2() personality i32 (...)* @__gxx_personality_v0 {
         %A = invoke i32 @test() to label %invcont unwind label %blat
 invcont:
         ret i32 %A
 blat:
-  %lpad = landingpad { i8*, i32 } personality i32 (...)* @__gxx_personality_v0
+  %lpad = landingpad { i8*, i32 }
             cleanup
   ret i32 0
 }