diff options
author | Eric Christopher <echristo@gmail.com> | 2013-04-09 20:22:47 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-04-09 20:22:47 +0000 |
commit | af12ad7c9264cb5840ccff5055d0a112a91798a5 (patch) | |
tree | 07444d61d7a332c0cb387eff444dfbaac8c9f350 /include/llvm/Support | |
parent | 3eb6d7fcd024b67d548e4c3a075682d7cff1599e (diff) |
Update the version of dwarf we say we're emitting to at least 3.
Deals with a dwarf2 -> dwarf3 DW_FORM_ref_addr change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179122 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/Dwarf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/Dwarf.h b/include/llvm/Support/Dwarf.h index b52914f938..62dea0e917 100644 --- a/include/llvm/Support/Dwarf.h +++ b/include/llvm/Support/Dwarf.h @@ -67,7 +67,7 @@ const uint64_t DW64_CIE_ID = UINT64_MAX; enum dwarf_constants { - DWARF_VERSION = 2, + DWARF_VERSION = 3, // Tags DW_TAG_array_type = 0x01, |