These were moved to ../SPARC
[oota-llvm.git] / test / CodeGen / PowerPC / inverted-bool-compares.ll
1 ; RUN: llvm-as < %s | llc -march=ppc32 | not grep xori &&
2 ; RUN: llvm-as < %s | llc -march=ppc32
3
4 int %test(bool %B, int* %P) {
5    br bool %B, label %T, label %F
6 T:
7         store int 123, int* %P
8         ret int 0
9 F:
10 ret int 17
11 }