mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
4a17addadb
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22772 91177308-0d34-0410-b5e6-96231b3b80d8
40 lines
726 B
LLVM
40 lines
726 B
LLVM
; RUN: llvm-as < %s | llc -march=ppc32 | grep eqv | wc -l | grep 2 &&
|
|
; RUN: llvm-as < %s | llc -march=ppc32 | grep andc | wc -l | grep 2 &&
|
|
; RUN: llvm-as < %s | llc -march=ppc32 | grep orc | 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
|
|
}
|
|
|
|
int %test3(int %X, int %Y) {
|
|
%A = xor int %Y, -1
|
|
%B = and int %X, %A
|
|
ret int %B
|
|
}
|
|
|
|
int %test4(int %X, int %Y) {
|
|
%A = xor int %Y, -1
|
|
%B = or int %X, %A
|
|
ret int %B
|
|
}
|
|
|
|
int %test5(int %X, int %Y) {
|
|
%A = xor int %X, -1
|
|
%B = and int %A, %Y
|
|
ret int %B
|
|
}
|
|
|
|
int %test6(int %X, int %Y) {
|
|
%A = xor int %X, -1
|
|
%B = or int %A, %Y
|
|
ret int %B
|
|
}
|