diff options
author | Eric Christopher <echristo@gmail.com> | 2013-10-03 17:41:20 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-10-03 17:41:20 +0000 |
commit | c948b9df2376a8afcbfd23d28cd73c16c7c0a7cb (patch) | |
tree | 84ef867f6a00b4508ab8a335a5c82e9fdbf36d21 /llvm/test/DebugInfo/X86/gnu-public-names-empty.ll | |
parent | f976c77ed77f6745d48ad552135046aa32109b72 (diff) | |
download | bcm5719-llvm-c948b9df2376a8afcbfd23d28cd73c16c7c0a7cb.tar.gz bcm5719-llvm-c948b9df2376a8afcbfd23d28cd73c16c7c0a7cb.zip |
Make sure we emit a section for pubnames even if that section is
going to be empty. This is particularly important for the gnu
pubnames case since we're emitting a relocation to the section.
llvm-svn: 191915
Diffstat (limited to 'llvm/test/DebugInfo/X86/gnu-public-names-empty.ll')
-rw-r--r-- | llvm/test/DebugInfo/X86/gnu-public-names-empty.ll | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/llvm/test/DebugInfo/X86/gnu-public-names-empty.ll b/llvm/test/DebugInfo/X86/gnu-public-names-empty.ll new file mode 100644 index 00000000000..2f5787a1be4 --- /dev/null +++ b/llvm/test/DebugInfo/X86/gnu-public-names-empty.ll @@ -0,0 +1,18 @@ +; RUN: llc -mtriple=x86_64-pc-linux-gnu -generate-gnu-dwarf-pub-sections -filetype=obj < %s | llvm-dwarfdump - | FileCheck %s + +; Generated from: + +; static int a __attribute__((section("a"))); + +; Check that the attributes in the compile unit both point to a correct +; location, even when nothing is exported. +; CHECK: DW_AT_GNU_pubnames [DW_FORM_sec_offset] (0x00000000) +; CHECK: DW_AT_GNU_pubtypes [DW_FORM_sec_offset] (0x00000000) + +!llvm.dbg.cu = !{!0} +!llvm.module.flags = !{!3} + +!0 = metadata !{i32 786449, metadata !1, i32 12, metadata !"clang version 3.4 (trunk 191846) (llvm/trunk 191866)", i1 false, metadata !"", i32 0, metadata !2, metadata !2, metadata !2, metadata !2, metadata !2, metadata !""} ; [ DW_TAG_compile_unit ] [/usr/local/google/home/echristo/tmp/foo.c] [DW_LANG_C99] +!1 = metadata !{metadata !"foo.c", metadata !"/usr/local/google/home/echristo/tmp"} +!2 = metadata !{i32 0} +!3 = metadata !{i32 2, metadata !"Dwarf Version", i32 4} |