diff options
author | Eric Christopher <echristo@gmail.com> | 2012-10-16 23:46:23 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-10-16 23:46:23 +0000 |
commit | 02509481f6da33d7c13d9c3c7748a88f09c02725 (patch) | |
tree | 0c7b0690c222a7659925ac60733bb18f26443599 /llvm/lib/DebugInfo | |
parent | 3680f8826ec7df6ab985ef465a17daf9f7726af2 (diff) | |
download | bcm5719-llvm-02509481f6da33d7c13d9c3c7748a88f09c02725.tar.gz bcm5719-llvm-02509481f6da33d7c13d9c3c7748a88f09c02725.zip |
Variable name cleanup.
llvm-svn: 166076
Diffstat (limited to 'llvm/lib/DebugInfo')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFContext.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/DebugInfo/DWARFContext.cpp b/llvm/lib/DebugInfo/DWARFContext.cpp index 241f55eaed2..a578211bee4 100644 --- a/llvm/lib/DebugInfo/DWARFContext.cpp +++ b/llvm/lib/DebugInfo/DWARFContext.cpp @@ -117,11 +117,11 @@ DWARFContext::getLineTableForCompileUnit(DWARFCompileUnit *cu) { void DWARFContext::parseCompileUnits() { uint32_t offset = 0; - const DataExtractor &debug_info_data = DataExtractor(getInfoSection(), - isLittleEndian(), 0); - while (debug_info_data.isValidOffset(offset)) { + const DataExtractor &DIData = DataExtractor(getInfoSection(), + isLittleEndian(), 0); + while (DIData.isValidOffset(offset)) { CUs.push_back(DWARFCompileUnit(*this)); - if (!CUs.back().extract(debug_info_data, &offset)) { + if (!CUs.back().extract(DIData, &offset)) { CUs.pop_back(); break; } |