aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-07-14 22:02:31 +0000
committerEric Christopher <echristo@gmail.com>2013-07-14 22:02:31 +0000
commit6c5ae22c6ac3890f5bb9bbb8ef62ef02271987c8 (patch)
treedb8221098a7fb96f6026126d4713dbd593c70c3f /lib/Support
parent010dbfdf9357f7db9dd93af35d6454919f7988f9 (diff)
downloadexternal_llvm-6c5ae22c6ac3890f5bb9bbb8ef62ef02271987c8.zip
external_llvm-6c5ae22c6ac3890f5bb9bbb8ef62ef02271987c8.tar.gz
external_llvm-6c5ae22c6ac3890f5bb9bbb8ef62ef02271987c8.tar.bz2
Add DW_AT_GNU_odr_signature to the set of dwarf attributes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186296 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/Dwarf.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Support/Dwarf.cpp b/lib/Support/Dwarf.cpp
index 0f91c11..8a80139 100644
--- a/lib/Support/Dwarf.cpp
+++ b/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";