In Stmt::printPretty(), pass the SourceManager to dump().

llvm-svn: 75606
This commit is contained in:
Argyrios Kyrtzidis 2009-07-14 03:20:38 +00:00
parent 12563b8111
commit b0c86d4fe8
1 changed files with 1 additions and 1 deletions

View File

@ -1241,7 +1241,7 @@ void Stmt::printPretty(llvm::raw_ostream &OS, ASTContext& Context,
}
if (Policy.Dump) {
dump();
dump(Context.getSourceManager());
return;
}