Variable name cleanup.
authorEric Christopher <echristo@gmail.com>
Tue, 16 Oct 2012 23:46:23 +0000 (23:46 +0000)
committerEric Christopher <echristo@gmail.com>
Tue, 16 Oct 2012 23:46:23 +0000 (23:46 +0000)
llvm-svn: 166076

llvm/lib/DebugInfo/DWARFContext.cpp

index 241f55e..a578211 100644 (file)
@@ -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;
     }