2003-08-24 12:16:58 +00:00
|
|
|
; Test that we can inline a simple function, turning the calls in it into invoke
|
2003-08-24 06:55:07 +00:00
|
|
|
; instructions
|
|
|
|
|
2016-12-27 02:47:37 +00:00
|
|
|
; RUN: opt < %s -inline -S | FileCheck %s
|
2016-12-27 07:18:43 +00:00
|
|
|
; RUN: opt < %s -passes='cgscc(inline)' -S | FileCheck %s
|
2003-08-24 06:55:07 +00:00
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
declare void @might_throw()
|
2003-08-24 06:55:07 +00:00
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
define internal void @callee() {
|
2016-12-27 02:47:37 +00:00
|
|
|
entry:
|
|
|
|
call void @might_throw()
|
|
|
|
ret void
|
2003-08-24 06:55:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
; caller returns true if might_throw throws an exception...
|
2015-06-17 20:52:32 +00:00
|
|
|
define i32 @caller() personality i32 (...)* @__gxx_personality_v0 {
|
2016-12-27 02:47:37 +00:00
|
|
|
; CHECK-LABEL: define i32 @caller() personality i32 (...)* @__gxx_personality_v0
|
|
|
|
entry:
|
|
|
|
invoke void @callee()
|
|
|
|
to label %cont unwind label %exc
|
|
|
|
; CHECK-NOT: @callee
|
|
|
|
; CHECK: invoke void @might_throw()
|
2008-03-01 09:15:35 +00:00
|
|
|
|
2016-12-27 02:47:37 +00:00
|
|
|
cont:
|
|
|
|
ret i32 0
|
2008-03-01 09:15:35 +00:00
|
|
|
|
2016-12-27 02:47:37 +00:00
|
|
|
exc:
|
|
|
|
%exn = landingpad {i8*, i32}
|
|
|
|
cleanup
|
|
|
|
ret i32 1
|
2003-08-24 06:55:07 +00:00
|
|
|
}
|
2011-09-01 01:08:21 +00:00
|
|
|
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|