blob: c51f2673123684c4757960aff9ac39714605d443 [file] [log] [blame]
Chris Lattnere8033c02005-09-23 00:53:06 +00001; RUN: llvm-as < %s | llc -march=ppc32 | not grep xori &&
2; RUN: llvm-as < %s | llc -march=ppc32
3
4int %test(bool %B, int* %P) {
5 br bool %B, label %T, label %F
6T:
7 store int 123, int* %P
8 ret int 0
9F:
10ret int 17
11}