1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

simple tests for nor generation

llvm-svn: 23491
This commit is contained in:
Chris Lattner 2005-09-28 17:55:10 +00:00
parent 2d240ce480
commit 26c05140ee

View File

@ -0,0 +1,12 @@
; RUN: llvm-as < %s | llc -march=ppc32 | grep nor | wc -l | grep 2
int %test1(int %X) {
%Y = xor int %X, -1
ret int %Y
}
int %test2(int %X, int %Y) {
%Z = or int %X, %Y
%R = xor int %Z, -1
ret int %R
}