PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients

are updated.

llvm-svn: 84447
This commit is contained in:
Daniel Dunbar
2009-10-18 21:17:35 +00:00
parent 63404d2861
commit 07d0785dbb
24 changed files with 41 additions and 45 deletions

View File

@@ -339,7 +339,7 @@ void LiveVariables::dumpLiveness(const ValTy& V, SourceManager& SM) const {
for (AnalysisDataTy::decl_iterator I = AD.begin_decl(),
E = AD.end_decl(); I!=E; ++I)
if (V.getDeclBit(I->second)) {
llvm::errs() << " " << I->first->getIdentifier()->getNameStr() << " <";
llvm::errs() << " " << I->first->getIdentifier()->getName() << " <";
I->first->getLocation().dump(SM);
llvm::errs() << ">\n";
}