Fix a missing newline (now that Value*'s operator<< doesn't append one).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78814 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-08-12 16:48:27 +00:00
parent bfbc1de72f
commit 0c0932f5e2

View File

@ -152,7 +152,7 @@ bool PrintDbgInfo::runOnFunction(Function &F) {
Printed = true;
}
Out << *i;
Out << *i << '\n';
printVariableDeclaration(i);
if (const User *U = dyn_cast<User>(i)) {