1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-01 15:33:33 +00:00
llvm-6502/test/CodeGen/PowerPC/inverted-bool-compares.ll

12 lines
216 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | llc -march=ppc32 | not grep xori &&
; RUN: llvm-as < %s | llc -march=ppc32
int %test(bool %B, int* %P) {
br bool %B, label %T, label %F
T:
store int 123, int* %P
ret int 0
F:
ret int 17
}