[llvm-commits] [llvm] r139785 - /llvm/trunk/include/llvm/Support/Dwarf.h

Nick Lewycky nicholas at mxc.ca
Wed Sep 14 22:30:56 PDT 2011


Author: nicholas
Date: Thu Sep 15 00:30:55 2011
New Revision: 139785

URL: http://llvm.org/viewvc/llvm-project?rev=139785&view=rev
Log:
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.

Modified:
    llvm/trunk/include/llvm/Support/Dwarf.h

Modified: llvm/trunk/include/llvm/Support/Dwarf.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Dwarf.h?rev=139785&r1=139784&r2=139785&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Dwarf.h (original)
+++ llvm/trunk/include/llvm/Support/Dwarf.h Thu Sep 15 00:30:55 2011
@@ -251,7 +251,7 @@
   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,





More information about the llvm-commits mailing list