mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
New testcase that the vector support does not work with yet.
This is also designed to make lowering a bitch :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15941 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
442729a671
commit
0c97a62c88
23
test/Other/2004-08-20-PackedControlFlow.ll
Normal file
23
test/Other/2004-08-20-PackedControlFlow.ll
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
; RUN: llvm-as < %s | llvm-dis | llvm-as
|
||||||
|
|
||||||
|
%v4f = type <4 x float>
|
||||||
|
|
||||||
|
%foo = uninitialized global %v4f
|
||||||
|
%bar = uninitialized global %v4f
|
||||||
|
|
||||||
|
implementation ; Functions:
|
||||||
|
|
||||||
|
void %main() {
|
||||||
|
br label %A
|
||||||
|
C:
|
||||||
|
store %v4f %t2, %v4f* %bar
|
||||||
|
ret void
|
||||||
|
|
||||||
|
B:
|
||||||
|
%t2 = add %v4f %t0, %t0
|
||||||
|
br label %C
|
||||||
|
|
||||||
|
A:
|
||||||
|
%t0 = load %v4f* %foo
|
||||||
|
br label %B
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user