mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-26 09:18:56 +00:00
Variable name cleanup.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166076 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -117,11 +117,11 @@ DWARFContext::getLineTableForCompileUnit(DWARFCompileUnit *cu) {
|
|||||||
|
|
||||||
void DWARFContext::parseCompileUnits() {
|
void DWARFContext::parseCompileUnits() {
|
||||||
uint32_t offset = 0;
|
uint32_t offset = 0;
|
||||||
const DataExtractor &debug_info_data = DataExtractor(getInfoSection(),
|
const DataExtractor &DIData = DataExtractor(getInfoSection(),
|
||||||
isLittleEndian(), 0);
|
isLittleEndian(), 0);
|
||||||
while (debug_info_data.isValidOffset(offset)) {
|
while (DIData.isValidOffset(offset)) {
|
||||||
CUs.push_back(DWARFCompileUnit(*this));
|
CUs.push_back(DWARFCompileUnit(*this));
|
||||||
if (!CUs.back().extract(debug_info_data, &offset)) {
|
if (!CUs.back().extract(DIData, &offset)) {
|
||||||
CUs.pop_back();
|
CUs.pop_back();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user