repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix edge cases in handling basic block split.
[llvm-complete.git]
/
test
/
CodeGen
/
PowerPC
/
vec_call.ll
blob
b2b91fe3f45cfbfb256f5ddc1a13099d267a8403
1
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mcpu=g5
2
3
<4 x int> %test_arg(<4 x int> %A, <4 x int> %B) {
4
%C = add <4 x int> %A, %B
5
ret <4 x int> %C
6
}
7
8
<4 x int> %foo() {
9
%X = call <4 x int> %test_arg(<4 x int> zeroinitializer, <4 x int> zeroinitializer)
10
ret <4 x int> %X
11
}