1 ; RUN: opt < %s -passes=inline -S | FileCheck %s
2 ; RUN: opt < %s -passes='cgscc(inline)' -S | FileCheck %s
3 ; RUN: opt < %s -passes='module-inline' -S | FileCheck %s
5 define i32 @testByte(i8 %X) {
7 %tmp = icmp ne i8 %X, 0
8 %tmp.i = zext i1 %tmp to i32
13 ; CHECK-LABEL: define i32 @main()
15 %rslt = call i32 @testByte(i8 123)