mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
new testcase, each function should have one extension instr in it
llvm-svn: 24711
This commit is contained in:
parent
5b1da8f9d0
commit
696d16afce
19
test/Regression/CodeGen/X86/extend.ll
Normal file
19
test/Regression/CodeGen/X86/extend.ll
Normal file
@ -0,0 +1,19 @@
|
||||
; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel | grep movzx | wc -l | grep 1
|
||||
; RUN: llvm-as < %s | 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user