summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/Hexagon/static.ll
diff options
context:
space:
mode:
authorTony Linthicum <tlinth@codeaurora.org>2011-12-12 21:14:40 +0000
committerTony Linthicum <tlinth@codeaurora.org>2011-12-12 21:14:40 +0000
commit1213a7a57fdcb6c875b3f79103fc96d3e9d30b40 (patch)
tree531d34e916e847cebbd717082d4f696a51610812 /llvm/test/CodeGen/Hexagon/static.ll
parent45c41641664d8ff44c03f6205312d347081882b0 (diff)
downloadbcm5719-llvm-1213a7a57fdcb6c875b3f79103fc96d3e9d30b40.tar.gz
bcm5719-llvm-1213a7a57fdcb6c875b3f79103fc96d3e9d30b40.zip
Hexagon backend support
llvm-svn: 146412
Diffstat (limited to 'llvm/test/CodeGen/Hexagon/static.ll')
-rw-r--r--llvm/test/CodeGen/Hexagon/static.ll20
1 files changed, 20 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/Hexagon/static.ll b/llvm/test/CodeGen/Hexagon/static.ll
new file mode 100644
index 00000000000..843b7cbb7a0
--- /dev/null
+++ b/llvm/test/CodeGen/Hexagon/static.ll
@@ -0,0 +1,20 @@
+; RUN: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s
+
+@num = external global i32
+@acc = external global i32
+@val = external global i32
+
+; CHECK: CONST32(#acc)
+; CHECK: CONST32(#val)
+; CHECK: CONST32(#num)
+
+define void @foo() nounwind {
+entry:
+ %0 = load i32* @num, align 4
+ %1 = load i32* @acc, align 4
+ %mul = mul nsw i32 %0, %1
+ %2 = load i32* @val, align 4
+ %add = add nsw i32 %mul, %2
+ store i32 %add, i32* @num, align 4
+ ret void
+}
OpenPOWER on IntegriCloud