mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-21 09:25:07 +00:00
Add a testcase for nate's patch
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23172 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
99296ffd36
commit
c730706a89
12
test/CodeGen/PowerPC/small-arguments.ll
Normal file
12
test/CodeGen/PowerPC/small-arguments.ll
Normal file
@ -0,0 +1,12 @@
|
||||
; 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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user