PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients
are updated. llvm-svn: 84447
This commit is contained in:
@@ -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";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user