aboutsummaryrefslogtreecommitdiffstats
path: root/test/DebugInfo/X86/dbg-asm.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/DebugInfo/X86/dbg-asm.s')
-rw-r--r--test/DebugInfo/X86/dbg-asm.s30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/DebugInfo/X86/dbg-asm.s b/test/DebugInfo/X86/dbg-asm.s
new file mode 100644
index 0000000..f6e5233b
--- /dev/null
+++ b/test/DebugInfo/X86/dbg-asm.s
@@ -0,0 +1,30 @@
+# RUN: llvm-mc -triple i686-windows-gnu -g %s -filetype obj -o - \
+# RUN: | llvm-readobj -r - | FileCheck -check-prefix CHECK-COFF %s
+# RUN: llvm-mc -triple i686-windows-itanium -g %s -filetype obj -o - \
+# RUN: | llvm-readobj -r - | FileCheck -check-prefix CHECK-COFF %s
+# RUN: llvm-mc -triple i686-linux-gnu -g %s -filetype obj -o - \
+# RUN: | llvm-readobj -r - | FileCheck -check-prefix CHECK-ELF %s
+
+_a:
+ movl $65, %eax
+ ret
+
+# CHECK-COFF: Relocations [
+# CHECK-COFF: Section {{.*}} .debug_info {
+# CHECK-COFF: 0x6 IMAGE_REL_I386_SECREL .debug_abbrev
+# CHECK-COFF: 0xC IMAGE_REL_I386_SECREL .debug_line
+# CHECK-COFF: }
+# CHECK-COFF: Section {{.*}} .debug_aranges {
+# CHECK-COFF: 0x6 IMAGE_REL_I386_SECREL .debug_info
+# CHECK-COFF: }
+# CHECK-COFF: ]
+
+# CHECK-ELF: Relocations [
+# CHECK-ELF: Section {{.*}} .rel.debug_info {
+# CHECK-ELF: 0x6 R_386_32 .debug_abbrev
+# CHECK-ELF: 0xC R_386_32 .debug_line
+# CHECK-ELF: }
+# CHECK-ELF: Section {{.*}} .rel.debug_aranges {
+# CHECK-ELF: 0x6 R_386_32 .debug_info
+# CHECK-ELF: }
+# CHECK-ELF: ]