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