mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-13 06:06:27 +00:00
28beeeac4d
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41097 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
642 B
LLVM
20 lines
642 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | grep movzx | count 1
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | grep movsx | count 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
|
|
}
|