[DWARF parser] Turn DILineInfo into a struct.
[oota-llvm.git] / tools / llvm-rtdyld / llvm-rtdyld.cpp
index ac43653d58aa4f8cea9b839abd8153d79fbb42dc..5e3c488c7bda235be747e3c8cb9ba8ca0183aa43 100644 (file)
@@ -172,8 +172,7 @@ static int printLineInfoForInput() {
         DILineInfoTable::iterator  End = Lines.end();
         for (DILineInfoTable::iterator It = Begin; It != End; ++It) {
           outs() << "  Line info @ " << It->first - Addr << ": "
-                 << It->second.getFileName()
-                 << ", line:" << It->second.getLine() << "\n";
+                 << It->second.FileName << ", line:" << It->second.Line << "\n";
         }
       }
     }