Move the personality function from LandingPadInst to Function
[oota-llvm.git] / test / Transforms / Inline / invoke_test-1.ll
index 922351fd461c7f39dbe864b468c636570bdf0538..8cb6362f34993fc3467853243a38a740a3c22992 100644 (file)
@@ -12,7 +12,7 @@ define internal void @callee() {
 }
 
 ; caller returns true if might_throw throws an exception...
-define i32 @caller() {
+define i32 @caller() personality i32 (...)* @__gxx_personality_v0 {
         invoke void @callee( )
                         to label %cont unwind label %exc
 
@@ -20,7 +20,7 @@ cont:           ; preds = %0
         ret i32 0
 
 exc:            ; preds = %0
-        %exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0
+        %exn = landingpad {i8*, i32}
                  cleanup
         ret i32 1
 }