mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 17:34:41 +00:00
catch all forms of xnor
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25208 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8700e14ba1
commit
07917b672d
14
test/CodeGen/SparcV8/xnor.ll
Normal file
14
test/CodeGen/SparcV8/xnor.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; RUN: llvm-as < %s | llc -march=sparcv8 -disable-v8-dag-isel=false &&
|
||||
; RUN: llvm-as < %s | llc -march=sparcv8 -disable-v8-dag-isel=false | grep xnor | 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, -1
|
||||
%B = xor int %A, %Y
|
||||
ret int %B
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user