summaryrefslogtreecommitdiffstats
path: root/llvm/test
diff options
context:
space:
mode:
authorReed Kotler <rkotler@mips.com>2014-05-01 20:39:21 +0000
committerReed Kotler <rkotler@mips.com>2014-05-01 20:39:21 +0000
commitbab3f23da6456bece6b9eb08d28da3503fbb2610 (patch)
tree6e464bcdf5b86573d453a7dabcea4adc8aab2bd7 /llvm/test
parent06900a0ffbf847028b603fb00f55da330db7c92e (diff)
downloadbcm5719-llvm-bab3f23da6456bece6b9eb08d28da3503fbb2610.tar.gz
bcm5719-llvm-bab3f23da6456bece6b9eb08d28da3503fbb2610.zip
Add basic functionality for assignment of ints.
This creates a lot of core infrastructure in which to add, with little effort, quite a bit more to mips fast-isel Test Plan: simplestore.ll Reviewers: dsanders Reviewed By: dsanders Differential Revision: http://reviews.llvm.org/D3527 llvm-svn: 207790
Diffstat (limited to 'llvm/test')
-rw-r--r--llvm/test/CodeGen/Mips/Fast-ISel/simplestore.ll15
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/Mips/Fast-ISel/simplestore.ll b/llvm/test/CodeGen/Mips/Fast-ISel/simplestore.ll
new file mode 100644
index 00000000000..5d52481dfdf
--- /dev/null
+++ b/llvm/test/CodeGen/Mips/Fast-ISel/simplestore.ll
@@ -0,0 +1,15 @@
+; RUN: llc -march=mipsel -relocation-model=pic -O0 -mips-fast-isel -fast-isel-abort -mcpu=mips32r2 \
+; RUN: < %s | FileCheck %s
+
+@abcd = external global i32
+
+; Function Attrs: nounwind
+define void @foo() {
+entry:
+ store i32 12345, i32* @abcd, align 4
+; CHECK: addiu $[[REG1:[0-9]+]], $zero, 12345
+; CHECK: lw $[[REG2:[0-9]+]], %got(abcd)(${{[0-9]+}})
+; CHECK: sw $[[REG1]], 0($[[REG2]])
+ ret void
+}
+
OpenPOWER on IntegriCloud