mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-26 05:56:51 +00:00
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:
parent
bfbc1de72f
commit
0c0932f5e2
@ -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)) {
|
||||
|
Loading…
Reference in New Issue
Block a user