diff options
author | Eric Christopher <echristo@gmail.com> | 2012-11-13 23:30:43 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-11-13 23:30:43 +0000 |
commit | 0f23b8214765a8da71c2ad73a23ee54d7db63e16 (patch) | |
tree | 0aac11374b9170039fadad03aa96e8ffca6e00ce /llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | |
parent | 00fa429b5d58a2378861673fa8544a830901a3d2 (diff) | |
download | bcm5719-llvm-0f23b8214765a8da71c2ad73a23ee54d7db63e16.tar.gz bcm5719-llvm-0f23b8214765a8da71c2ad73a23ee54d7db63e16.zip |
Revert "Use the 'count' attribute instead of the 'upper_bound' attribute."
temporarily as it is breaking the gdb bots.
This reverts commit r167806/e7ff4c14b157746b3e0228d2dce9f70712d1c126.
llvm-svn: 167886
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp index bcb002cdac3..2b07dda31ff 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp @@ -1252,7 +1252,6 @@ void CompileUnit::constructSubrangeDIE(DIE &Buffer, DISubrange SR, addDIEEntry(DW_Subrange, dwarf::DW_AT_type, dwarf::DW_FORM_ref4, IndexTy); uint64_t L = SR.getLo(); uint64_t H = SR.getHi(); - uint64_t C = SR.getCount(); // The L value defines the lower bounds which is typically zero for C/C++. The // H value is the upper bounds. Values are 64 bit. H - L + 1 is the size @@ -1266,7 +1265,7 @@ void CompileUnit::constructSubrangeDIE(DIE &Buffer, DISubrange SR, } if (L) addUInt(DW_Subrange, dwarf::DW_AT_lower_bound, 0, L); - addUInt(DW_Subrange, dwarf::DW_AT_count, 0, C); + addUInt(DW_Subrange, dwarf::DW_AT_upper_bound, 0, H); Buffer.addChild(DW_Subrange); } |