1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/test/Transforms/Inline/simplified_to.ll

16 lines
391 B
LLVM
Raw Normal View History

; RUN: opt < %s -passes="print<inline-cost>" 2>&1 | FileCheck %s
; CHECK-LABEL: @test()
; CHECK: cost before = {{.*}}, cost after = {{.*}}, threshold before = {{.*}}, threshold after = {{.*}}, cost delta = {{.*}}, simplified to i1 false
; CHECK: %1 = icmp eq i32 4, 5
define i32 @test() {
%1 = icmp eq i32 4, 5
ret i32 0
}
define void @main() {
%1 = call i32 @test()
ret void
}