[llvm-commits] CVS: llvm/test/Regression/Other/2004-08-20-PackedControlFlow.ll
Chris Lattner
lattner at cs.uiuc.edu
Fri Aug 20 01:34:40 PDT 2004
Changes in directory llvm/test/Regression/Other:
2004-08-20-PackedControlFlow.ll added (r1.1)
---
Log message:
New testcase that the vector support does not work with yet.
This is also designed to make lowering a bitch :)
---
Diffs of the changes: (+23 -0)
Index: llvm/test/Regression/Other/2004-08-20-PackedControlFlow.ll
diff -c /dev/null llvm/test/Regression/Other/2004-08-20-PackedControlFlow.ll:1.1
*** /dev/null Fri Aug 20 03:34:37 2004
--- llvm/test/Regression/Other/2004-08-20-PackedControlFlow.ll Fri Aug 20 03:34:27 2004
***************
*** 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
+ }
More information about the llvm-commits
mailing list