summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2012-10-16 23:46:23 +0000
committerEric Christopher <echristo@gmail.com>2012-10-16 23:46:23 +0000
commit02509481f6da33d7c13d9c3c7748a88f09c02725 (patch)
tree0c7b0690c222a7659925ac60733bb18f26443599 /llvm/lib/DebugInfo
parent3680f8826ec7df6ab985ef465a17daf9f7726af2 (diff)
downloadbcm5719-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.cpp8
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;
}
OpenPOWER on IntegriCloud