summaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic/2004-05-09-LiveVarPartialRegister.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Generic/2004-05-09-LiveVarPartialRegister.ll')
-rw-r--r--test/CodeGen/Generic/2004-05-09-LiveVarPartialRegister.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/Generic/2004-05-09-LiveVarPartialRegister.ll b/test/CodeGen/Generic/2004-05-09-LiveVarPartialRegister.ll
new file mode 100644
index 000000000000..1f58ce11fe71
--- /dev/null
+++ b/test/CodeGen/Generic/2004-05-09-LiveVarPartialRegister.ll
@@ -0,0 +1,13 @@
+; RUN: llvm-as < %s | llc
+@global_long_1 = linkonce global i64 7 ; <i64*> [#uses=1]
+@global_long_2 = linkonce global i64 49 ; <i64*> [#uses=1]
+
+define i32 @main() {
+ %l1 = load i64* @global_long_1 ; <i64> [#uses=1]
+ %l2 = load i64* @global_long_2 ; <i64> [#uses=1]
+ %cond = icmp sle i64 %l1, %l2 ; <i1> [#uses=1]
+ %cast2 = zext i1 %cond to i32 ; <i32> [#uses=1]
+ %RV = sub i32 1, %cast2 ; <i32> [#uses=1]
+ ret i32 %RV
+}
+