mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
new testcase
llvm-svn: 26726
This commit is contained in:
parent
1782f3971d
commit
7821da357e
11
test/Regression/CodeGen/PowerPC/and_add.ll
Normal file
11
test/Regression/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