summaryrefslogtreecommitdiff
path: root/test/Transforms/Inline/casts.ll
blob: c201a457bcc43c473d0963d6ddbf4cc9ed64575a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llvm-upgrade < %s | llvm-as | opt -inline | llvm-dis | grep 'ret int 1'
; ModuleID = 'short.opt.bc'

implementation   ; Functions:

int %testBool(bool %X) {
	%tmp = zext bool %X to int		; <int> [#uses=1]
	ret int %tmp
}

int %testByte(sbyte %X) {
	%tmp = setne sbyte %X, 0		; <bool> [#uses=1]
	%tmp.i = zext bool %tmp to int		; <int> [#uses=1]
	ret int %tmp.i
}

int %main() {
        %rslt = call int %testByte( sbyte 123)
	ret int %rslt
}