mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-30 17:33:24 +00:00
Check for eqv matching
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21414 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
837a521c48
commit
9dd7a87a88
13
test/CodeGen/PowerPC/eqv.ll
Normal file
13
test/CodeGen/PowerPC/eqv.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; RUN: llvm-as < %s | llc -march=ppc32 | grep eqv | wc -l | grep 2
|
||||
|
||||
int %test1(int %X, int %Y) {
|
||||
%A = xor int %X, %Y
|
||||
%B = xor int %A, -1
|
||||
ret int %B
|
||||
}
|
||||
|
||||
int %test2(int %X, int %Y) {
|
||||
%A = xor int %X, %Y
|
||||
%B = xor int %A, -1
|
||||
ret int %B
|
||||
}
|
Loading…
Reference in New Issue
Block a user