mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-15 04:08:07 +00:00
7dd8b05fd7
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23199 91177308-0d34-0410-b5e6-96231b3b80d8
27 lines
502 B
LLVM
27 lines
502 B
LLVM
; RUN: llvm-as < %s | llc -march=ppc32 | not grep 'extsh\|rlwinm'
|
|
|
|
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
|
|
}
|
|
|
|
void %test3() {
|
|
%tmp.0 = call short %foo() ;; no extsh!
|
|
%tmp.1 = setlt short %tmp.0, 1234
|
|
br bool %tmp.1, label %then, label %UnifiedReturnBlock
|
|
|
|
then:
|
|
call int %test1(short 0)
|
|
ret void
|
|
UnifiedReturnBlock:
|
|
ret void
|
|
}
|
|
|
|
declare short %foo()
|