llvm/test/CodeGen/AArch64/tailcall_misched_graph.ll: s/REQUIRE/REQUIRES/
[oota-llvm.git] / test / CodeGen / PowerPC / inverted-bool-compares.ll
1 ; RUN: llc < %s -march=ppc32 | not grep xori
2
3 define i32 @test(i1 %B, i32* %P) {
4         br i1 %B, label %T, label %F
5
6 T:              ; preds = %0
7         store i32 123, i32* %P
8         ret i32 0
9
10 F:              ; preds = %0
11         ret i32 17
12 }
13