2003-08-24 07:02:26 +02:00
|
|
|
; This checks to ensure that the inline pass deletes functions if they get
|
|
|
|
; inlined into all of their callers.
|
|
|
|
|
2008-03-01 10:15:35 +01:00
|
|
|
; RUN: llvm-as < %s | opt -inline | llvm-dis | \
|
2007-04-15 10:30:33 +02:00
|
|
|
; RUN: not grep %reallysmall
|
2003-08-24 07:02:26 +02:00
|
|
|
|
2008-03-01 10:15:35 +01:00
|
|
|
define internal i32 @reallysmall(i32 %A) {
|
|
|
|
ret i32 %A
|
2003-08-24 07:02:26 +02:00
|
|
|
}
|
|
|
|
|
2008-03-01 10:15:35 +01:00
|
|
|
define void @caller1() {
|
|
|
|
call i32 @reallysmall( i32 5 ) ; <i32>:1 [#uses=0]
|
|
|
|
ret void
|
2003-08-24 07:02:26 +02:00
|
|
|
}
|
|
|
|
|
2008-03-01 10:15:35 +01:00
|
|
|
define void @caller2(i32 %A) {
|
|
|
|
call i32 @reallysmall( i32 %A ) ; <i32>:1 [#uses=0]
|
|
|
|
ret void
|
2003-08-24 07:02:26 +02:00
|
|
|
}
|
|
|
|
|
2008-03-01 10:15:35 +01:00
|
|
|
define i32 @caller3(i32 %A) {
|
|
|
|
%B = call i32 @reallysmall( i32 %A ) ; <i32> [#uses=1]
|
|
|
|
ret i32 %B
|
2003-08-24 07:02:26 +02:00
|
|
|
}
|
2008-03-01 10:15:35 +01:00
|
|
|
|