aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/ELF/abs.s
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-10-27 16:04:30 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-10-27 16:04:30 +0000
commitbf052ac5d1c8f21075bc675f629709c20791c5f7 (patch)
tree2a08d8b0eadb799ec0d440f44d4758381cab1afc /test/MC/ELF/abs.s
parent88182132470527e27231f09b25a885893e528c66 (diff)
downloadexternal_llvm-bf052ac5d1c8f21075bc675f629709c20791c5f7.zip
external_llvm-bf052ac5d1c8f21075bc675f629709c20791c5f7.tar.gz
external_llvm-bf052ac5d1c8f21075bc675f629709c20791c5f7.tar.bz2
Symbols defined as the difference of other two end up in the ABS section.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117451 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/ELF/abs.s')
-rw-r--r--test/MC/ELF/abs.s16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/MC/ELF/abs.s b/test/MC/ELF/abs.s
new file mode 100644
index 0000000..d7fa0c0
--- /dev/null
+++ b/test/MC/ELF/abs.s
@@ -0,0 +1,16 @@
+// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump | FileCheck %s
+
+// Test that zed will be an ABS symbol
+
+.Lfoo:
+.Lbar:
+ zed = .Lfoo - .Lbar
+
+// CHECK: # Symbol 0x00000001
+// CHECK-NEXT: (('st_name', 0x00000001) # 'zed'
+// CHECK-NEXT: ('st_bind', 0x00000000)
+// CHECK-NEXT: ('st_type', 0x00000000)
+// CHECK-NEXT: ('st_other', 0x00000000)
+// CHECK-NEXT: ('st_shndx', 0x0000fff1)
+// CHECK-NEXT: ('st_value', 0x00000000)
+// CHECK-NEXT: ('st_size', 0x00000000)