Fix a latent bug exposed by my truncstore patch. We compiled stfiwx-2.ll to:
[oota-llvm.git] / test / CodeGen / PowerPC / inverted-bool-compares.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | not grep xori
2
3 int %test(bool %B, int* %P) {
4    br bool %B, label %T, label %F
5 T:
6         store int 123, int* %P
7         ret int 0
8 F:
9 ret int 17
10 }