diff options
author | Eric Christopher <echristo@gmail.com> | 2013-07-14 22:02:31 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-07-14 22:02:31 +0000 |
commit | 8e46e7f04b5467a65e0d04ee32ebca9014f21521 (patch) | |
tree | c5947a562cddd2847af7a263a049bafc1bc8469a /llvm/lib/Support/Dwarf.cpp | |
parent | 666dc635c70db6706a1c93426f8718bde7f70933 (diff) | |
download | llvm-8e46e7f04b5467a65e0d04ee32ebca9014f21521.zip llvm-8e46e7f04b5467a65e0d04ee32ebca9014f21521.tar.gz llvm-8e46e7f04b5467a65e0d04ee32ebca9014f21521.tar.bz2 |
Add DW_AT_GNU_odr_signature to the set of dwarf attributes.
llvm-svn: 186296
Diffstat (limited to 'llvm/lib/Support/Dwarf.cpp')
-rw-r--r-- | llvm/lib/Support/Dwarf.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/Dwarf.cpp b/llvm/lib/Support/Dwarf.cpp index 0f91c11..8a80139 100644 --- a/llvm/lib/Support/Dwarf.cpp +++ b/llvm/lib/Support/Dwarf.cpp @@ -230,6 +230,7 @@ const char *llvm::dwarf::AttributeString(unsigned Attribute) { case DW_AT_body_end: return "DW_AT_body_end"; case DW_AT_GNU_vector: return "DW_AT_GNU_vector"; case DW_AT_GNU_template_name: return "DW_AT_GNU_template_name"; + case DW_AT_GNU_odr_signature: return "DW_AT_GNU_odr_signature"; case DW_AT_MIPS_assumed_size: return "DW_AT_MIPS_assumed_size"; case DW_AT_lo_user: return "DW_AT_lo_user"; case DW_AT_hi_user: return "DW_AT_hi_user"; |