diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-09-15 05:30:55 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-09-15 05:30:55 +0000 |
commit | e8cdaddcf8b197bd3f8ffa801ea8efe8f26a9cbc (patch) | |
tree | fd2a818b007a8e0c5c2b96429665564bb6c17e5c | |
parent | ee674b3e3b862a955954c21150403b6d3da86ebd (diff) | |
download | bcm5719-llvm-e8cdaddcf8b197bd3f8ffa801ea8efe8f26a9cbc.tar.gz bcm5719-llvm-e8cdaddcf8b197bd3f8ffa801ea8efe8f26a9cbc.zip |
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.
llvm-svn: 139785
-rw-r--r-- | llvm/include/llvm/Support/Dwarf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/Dwarf.h b/llvm/include/llvm/Support/Dwarf.h index ea3fbe67ab7..30f91874db2 100644 --- a/llvm/include/llvm/Support/Dwarf.h +++ b/llvm/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, |