summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-04-03 18:31:12 +0000
committerEric Christopher <echristo@gmail.com>2013-04-03 18:31:12 +0000
commiteac49f668a5461af4c408b13f328c9e370457200 (patch)
tree30200f9245bdd7f4b662fa203ff2c902af7f9a13 /test
parent5417223f98145d8e2de442da10ace621cae613de (diff)
downloadllvm-eac49f668a5461af4c408b13f328c9e370457200.tar.gz
llvm-eac49f668a5461af4c408b13f328c9e370457200.tar.bz2
llvm-eac49f668a5461af4c408b13f328c9e370457200.tar.xz
When dumping clear the arm/thumb flag for now.
Patch by Nico Rieck! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178676 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Object/ARM/symbol-addr.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Object/ARM/symbol-addr.ll b/test/Object/ARM/symbol-addr.ll
new file mode 100644
index 0000000000..6bcbde9f9f
--- /dev/null
+++ b/test/Object/ARM/symbol-addr.ll
@@ -0,0 +1,12 @@
+; RUN: llc %s -mtriple=arm-unknown-unknown -filetype=obj -o - \
+; RUN: | llvm-objdump -t - | FileCheck %s
+; RUN: llc %s -mtriple=thumb-unknown-unknown -filetype=obj -o - \
+; RUN: | llvm-objdump -t - | FileCheck %s
+
+; Check that the symbol address does not include the ARM/Thumb instruction
+; indicator bit.
+; CHECK: 00000000 g F .text {{[0-9]+}} test
+
+define i32 @test() {
+ ret i32 1
+}