aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine
diff options
context:
space:
mode:
authorTim Northover <tnorthover@apple.com>2013-06-01 09:55:14 +0000
committerTim Northover <tnorthover@apple.com>2013-06-01 09:55:14 +0000
commit85c622d6b6633c19d2729e82453c6c7f56ee7cd9 (patch)
tree7926a5dac9bd3ca0f95366bf9e0f7aea89a84253 /test/ExecutionEngine
parent72ad17c48c15562fe31c65f6daa09c83f42860c1 (diff)
downloadexternal_llvm-85c622d6b6633c19d2729e82453c6c7f56ee7cd9.zip
external_llvm-85c622d6b6633c19d2729e82453c6c7f56ee7cd9.tar.gz
external_llvm-85c622d6b6633c19d2729e82453c6c7f56ee7cd9.tar.bz2
X86: change MOV64ri64i32 into MOV32ri64
The MOV64ri64i32 instruction required hacky MCInst lowering because it was allocated as setting a GR64, but the eventual instruction ("movl") only set a GR32. This converts it into a so-called "MOV32ri64" which still accepts a (appropriate) 64-bit immediate but defines a GR32. This is then converted to the full GR64 by a SUBREG_TO_REG operation, thus keeping everyone happy. This fixes a typo in the opcode field of the original patch, which should make the legact JIT work again (& adds test for that problem). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183068 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r--test/ExecutionEngine/mov64zext32.ll17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/ExecutionEngine/mov64zext32.ll b/test/ExecutionEngine/mov64zext32.ll
new file mode 100644
index 0000000..00241c8
--- /dev/null
+++ b/test/ExecutionEngine/mov64zext32.ll
@@ -0,0 +1,17 @@
+; RUN: %lli %s > /dev/null
+
+define i64 @foo() {
+ ret i64 42
+}
+
+define i32 @main() {
+ %val = call i64 @foo()
+ %is42 = icmp eq i64 %val, 42
+ br i1 %is42, label %good, label %bad
+
+good:
+ ret i32 0
+
+bad:
+ ret i32 1
+} \ No newline at end of file