summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-09-15 05:30:55 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-09-15 05:30:55 +0000
commit2460f32a8ab3fec16f1578c0119c3c029d236fa5 (patch)
tree159f585c4a83c961c6728c139096c7eac8bfccab /include
parent3a4178ea13b508bdad6f51d351d8ad3cf589959e (diff)
downloadllvm-2460f32a8ab3fec16f1578c0119c3c029d236fa5.tar.gz
llvm-2460f32a8ab3fec16f1578c0119c3c029d236fa5.tar.bz2
llvm-2460f32a8ab3fec16f1578c0119c3c029d236fa5.tar.xz
Despite what the GCC wiki says, a quick search shows that
DW_AT_GNU_template_name = 0x2110, not 0x2108. That would explain those attr #0x2110 under the DW_TAG_GNU_template_template_param I'm seeing. Migrate from documented values to reality. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139785 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/Dwarf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/Dwarf.h b/include/llvm/Support/Dwarf.h
index ea3fbe67ab..30f91874db 100644
--- a/include/llvm/Support/Dwarf.h
+++ b/include/llvm/Support/Dwarf.h
@@ -251,7 +251,7 @@ enum dwarf_constants {
DW_AT_body_begin = 0x2105,
DW_AT_body_end = 0x2106,
DW_AT_GNU_vector = 0x2107,
- DW_AT_GNU_template_name = 0x2108,
+ DW_AT_GNU_template_name = 0x2110,
DW_AT_MIPS_assumed_size = 0x2011,
DW_AT_lo_user = 0x2000,
DW_AT_hi_user = 0x3fff,