mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-22 11:39:35 +00:00
4572ce85b0
llvm-svn: 33296
10 lines
255 B
LLVM
10 lines
255 B
LLVM
; This was erroneously being turned into an rlwinm instruction.
|
|
; The sign bit does matter in this case.
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | grep srawi
|
|
int %test(int %X) {
|
|
%Y = and int %X, -2
|
|
%Z = shr int %Y, ubyte 11
|
|
ret int %Z
|
|
}
|