summaryrefslogtreecommitdiff
path: root/test/MC/ELF/elf_directive_section.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/MC/ELF/elf_directive_section.s')
-rw-r--r--test/MC/ELF/elf_directive_section.s23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/MC/ELF/elf_directive_section.s b/test/MC/ELF/elf_directive_section.s
new file mode 100644
index 0000000000..9531c026e6
--- /dev/null
+++ b/test/MC/ELF/elf_directive_section.s
@@ -0,0 +1,23 @@
+# RUN: llvm-mc -triple i386-pc-linux-gnu %s | FileCheck %s
+
+ .bss
+# CHECK: .bss
+
+ .data.rel.ro
+# CHECK: .data.rel.ro
+
+ .data.rel
+# CHECK: .data.rel
+
+ .eh_frame
+# CHECK: .eh_frame
+
+ .rodata
+# CHECK: .rodata
+
+ .tbss
+# CHECK: .tbss
+
+ .tdata
+# CHECK: .tdata
+