projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[DAG] Don't pull the binary operation though the shift if the operands have opaque...
[oota-llvm.git]
/
test
/
CodeGen
/
Generic
/
v-split.ll
1
; RUN: llc < %s
2
%f8 = type <8 x float>
3
4
define void @test_f8(%f8 *%P, %f8* %Q, %f8 *%S) {
5
%p = load %f8* %P
6
%q = load %f8* %Q
7
%R = fadd %f8 %p, %q
8
store %f8 %R, %f8 *%S
9
ret void
10
}
11