mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
d44d3d5fc3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26265 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
377 B
LLVM
10 lines
377 B
LLVM
; This test should not contain a sign extend
|
|
; RUN: llvm-as < %s | llc -march=ppc32 | not grep extsh
|
|
|
|
int %test(uint %mode.0.i.0) {
|
|
%tmp.79 = cast uint %mode.0.i.0 to short ; <sbyte> [#uses=1]
|
|
%tmp.80 = cast short %tmp.79 to int ; <int> [#uses=1]
|
|
%tmp.81 = and int %tmp.80, 24 ; <int> [#uses=1]
|
|
ret int %tmp.81
|
|
}
|