aboutsummaryrefslogtreecommitdiffstats
path: root/test/Other/2004-08-16-PackedSelect.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Other/2004-08-16-PackedSelect.ll')
-rw-r--r--test/Other/2004-08-16-PackedSelect.ll15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Other/2004-08-16-PackedSelect.ll b/test/Other/2004-08-16-PackedSelect.ll
new file mode 100644
index 0000000..5bbf20c
--- /dev/null
+++ b/test/Other/2004-08-16-PackedSelect.ll
@@ -0,0 +1,15 @@
+; RUN: llvm-upgrade < %s | llvm-as | llvm-dis
+
+%foo = uninitialized global <4 x float>;
+%bar = uninitialized global <4 x float>;
+
+implementation ; Functions:
+
+void %main()
+{
+ %t0 = load <4 x float>* %foo
+ %t1 = add <4 x float> %t0, %t0
+ %t2 = select bool true, <4 x float> %t0, <4 x float> %t1
+ store <4 x float> %t2, <4 x float>* %bar
+ ret void
+} \ No newline at end of file