mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 18:06:49 +00:00
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26726 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b6b17ffbc6
commit
f4f5f6bca8
11
test/CodeGen/PowerPC/and_add.ll
Normal file
11
test/CodeGen/PowerPC/and_add.ll
Normal file
@ -0,0 +1,11 @@
|
||||
; RUN: llvm-as < %s | llc -march=ppc32 | grep slwi &&
|
||||
; RUN: llvm-as < %s | llc -march=ppc32 | not grep addi &&
|
||||
; RUN: llvm-as < %s | llc -march=ppc32 | not grep rlwinm
|
||||
|
||||
int %test(int %A) {
|
||||
%B = mul int %A, 8 ;; shift
|
||||
%C = add int %B, 7 ;; dead, no demanded bits.
|
||||
%D = and int %C, -8 ;; dead once add is gone.
|
||||
ret int %D
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user