aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll')
-rw-r--r--test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll b/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll
new file mode 100644
index 0000000..1d9ba77
--- /dev/null
+++ b/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll
@@ -0,0 +1,18 @@
+; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
+; RUN: lli %t.bc > /dev/null
+
+target endian = little
+target pointersize = 32
+
+implementation
+
+int %main() {
+entry:
+ br label %endif
+then:
+ br label %endif
+endif:
+ %x = phi uint [ 4, %entry ], [ 27, %then ]
+ %result = phi int [ 32, %then ], [ 0, %entry ]
+ ret int 0
+}