1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/test/Transforms/Inline/inline_dce.ll
Chandler Carruth a375a1b982 [Inliner] Modernize all of the inliner tests that were using grep.
This mostly involved converting from grep to FileCheck and tidying up
the IR used.

In one case (invoke_test-3.ll) the test had become completely pointless
as we use 'resume' rather than 'unwind' now, and even then it did not
occur at the end of the line.

llvm-svn: 290570
2016-12-27 02:47:37 +00:00

37 lines
700 B
LLVM

; This checks to ensure that the inline pass deletes functions if they get
; inlined into all of their callers.
; RUN: opt < %s -inline -S | \
; RUN: not grep @reallysmall
define internal i32 @reallysmall(i32 %A) {
; CHECK-NOT: @reallysmall
entry:
ret i32 %A
}
define void @caller1() {
; CHECK-LABEL: define void @caller1()
entry:
call i32 @reallysmall(i32 5)
; CHECK-NOT: call
ret void
}
define void @caller2(i32 %A) {
; CHECK-LABEL: define void @caller2(i32 %A)
entry:
call i32 @reallysmall(i32 %A)
; CHECK-NOT: call
ret void
}
define i32 @caller3(i32 %A) {
; CHECK-LABEL: define void @caller3(i32 %A)
entry:
%B = call i32 @reallysmall(i32 %A)
; CHECK-NOT: call
ret i32 %B
}