projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Use --expand-relocs in a test. It will make the next change easier to read.
[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