You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
494 B
20 lines
494 B
4 months ago
|
; RUN: opt < %s -inline -S | grep "ret i32 1"
|
||
|
; ModuleID = 'short.opt.bc'
|
||
|
|
||
|
define i32 @testBool(i1 %X) {
|
||
|
%tmp = zext i1 %X to i32 ; <i32> [#uses=1]
|
||
|
ret i32 %tmp
|
||
|
}
|
||
|
|
||
|
define i32 @testByte(i8 %X) {
|
||
|
%tmp = icmp ne i8 %X, 0 ; <i1> [#uses=1]
|
||
|
%tmp.i = zext i1 %tmp to i32 ; <i32> [#uses=1]
|
||
|
ret i32 %tmp.i
|
||
|
}
|
||
|
|
||
|
define i32 @main() {
|
||
|
%rslt = call i32 @testByte( i8 123 ) ; <i32> [#uses=1]
|
||
|
ret i32 %rslt
|
||
|
}
|
||
|
|