aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/extend.ll
blob: fdad79076422d66d0c3e728bf1fb418241c80dc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | grep movzx | wc -l | grep 1
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | grep movsx | wc -l | grep 1

%G1 = internal global ubyte 0		; <ubyte*> [#uses=1]
%G2 = internal global sbyte 0		; <sbyte*> [#uses=1]

implementation   ; Functions:

short %test1() {  ;; one zext
	%tmp.0 = load ubyte* %G1		; <ubyte> [#uses=1]
	%tmp.3 = cast ubyte %tmp.0 to short		; <short> [#uses=1]
	ret short %tmp.3
}

short %test2() {  ;; one sext
	%tmp.0 = load sbyte* %G2		; <sbyte> [#uses=1]
	%tmp.3 = cast sbyte %tmp.0 to short		; <short> [#uses=1]
	ret short %tmp.3
}