summaryrefslogtreecommitdiff
path: root/test/MC/ELF/comdat.s
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-11-11 18:13:52 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-11-11 18:13:52 +0000
commit2ff9e83a826c1c2ee0f1c6072d3d97d5b10678ee (patch)
tree7b0da82eca52b236bf7259f9d451dde58a1f7689 /test/MC/ELF/comdat.s
parent56653f0df85f8e4ee60941a6ca31c17ca6f936ff (diff)
downloadllvm-2ff9e83a826c1c2ee0f1c6072d3d97d5b10678ee.tar.gz
llvm-2ff9e83a826c1c2ee0f1c6072d3d97d5b10678ee.tar.bz2
llvm-2ff9e83a826c1c2ee0f1c6072d3d97d5b10678ee.tar.xz
Initial comdat implementation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118805 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/ELF/comdat.s')
-rw-r--r--test/MC/ELF/comdat.s39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/MC/ELF/comdat.s b/test/MC/ELF/comdat.s
new file mode 100644
index 0000000000..ba4c9c7abb
--- /dev/null
+++ b/test/MC/ELF/comdat.s
@@ -0,0 +1,39 @@
+// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump | FileCheck %s
+
+// Test that we produce the two group sections and that they are a the beginning
+// of the file.
+
+// CHECK: # Section 0x00000001
+// CHECK-NEXT: (('sh_name', 0x00000021) # '.group'
+// CHECK-NEXT: ('sh_type', 0x00000011)
+// CHECK-NEXT: ('sh_flags', 0x00000000)
+// CHECK-NEXT: ('sh_addr', 0x00000000)
+// CHECK-NEXT: ('sh_offset', 0x00000040)
+// CHECK-NEXT: ('sh_size', 0x0000000c)
+// CHECK-NEXT: ('sh_link', 0x0000000a)
+// CHECK-NEXT: ('sh_info', 0x00000001)
+// CHECK-NEXT: ('sh_addralign', 0x00000004)
+// CHECK-NEXT: ('sh_entsize', 0x00000004)
+// CHECK-NEXT: ),
+// CHECK-NEXT: # Section 0x00000002
+// CHECK-NEXT: (('sh_name', 0x00000021) # '.group'
+// CHECK-NEXT: ('sh_type', 0x00000011)
+// CHECK-NEXT: ('sh_flags', 0x00000000)
+// CHECK-NEXT: ('sh_addr', 0x00000000)
+// CHECK-NEXT: ('sh_offset', 0x0000004c)
+// CHECK-NEXT: ('sh_size', 0x00000008)
+// CHECK-NEXT: ('sh_link', 0x0000000a)
+// CHECK-NEXT: ('sh_info', 0x00000002)
+// CHECK-NEXT: ('sh_addralign', 0x00000004)
+// CHECK-NEXT: ('sh_entsize', 0x00000004)
+
+ .section .foo,"axG",@progbits,g1,comdat
+g1:
+ nop
+
+ .section .bar,"axG",@progbits,g1,comdat
+ nop
+
+ .section .zed,"axG",@progbits,g2,comdat
+g2:
+ nop