Despite what the GCC wiki says, a quick search shows that
authorNick Lewycky <nicholas@mxc.ca>
Thu, 15 Sep 2011 05:30:55 +0000 (05:30 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Thu, 15 Sep 2011 05:30:55 +0000 (05:30 +0000)
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

include/llvm/Support/Dwarf.h

index ea3fbe67ab70d3af7d7ca9c8c72f548706215412..30f91874db2072de0fea7fb9143119154860c9fa 100644 (file)
@@ -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,