mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
13 lines
251 B
LLVM
13 lines
251 B
LLVM
|
; RUN: llvm-as < %s | llc -march=ppc32 | not grep 'extsh\|rlwinm r3, r3'
|
||
|
|
||
|
int %test1(short %X) {
|
||
|
%Y = cast short %X to int ;; dead
|
||
|
ret int %Y
|
||
|
}
|
||
|
|
||
|
int %test2(ushort %X) {
|
||
|
%Y = cast ushort %X to int
|
||
|
%Z = and int %Y, 65535 ;; dead
|
||
|
ret int %Z
|
||
|
}
|