repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Forbid arrays of function-type and structures with function-typed fields.
[llvm/avr.git]
/
test
/
CodeGen
/
PowerPC
/
inverted-bool-compares.ll
blob
aa7e4d6860246fe37cc30aa0c2987b05f46cd836
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