summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-17 15:29:31 +0000
committerDan Gohman <gohman@apple.com>2009-08-17 15:29:31 +0000
commit74cb168a9e115ec7b88bbad0f87e6756db4527d3 (patch)
tree82cd1934364a259bde42103fece5d6ee3f285c22 /llvm/lib
parentd04f9bf01ad07f7d43e1cd636a74bbd2acdbceca (diff)
downloadbcm5719-llvm-74cb168a9e115ec7b88bbad0f87e6756db4527d3.tar.gz
bcm5719-llvm-74cb168a9e115ec7b88bbad0f87e6756db4527d3.zip
Fix more missing newlines.
llvm-svn: 79244
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Analysis/IVUsers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/IVUsers.cpp b/llvm/lib/Analysis/IVUsers.cpp
index ebfc53fc78a..00622d360ac 100644
--- a/llvm/lib/Analysis/IVUsers.cpp
+++ b/llvm/lib/Analysis/IVUsers.cpp
@@ -228,13 +228,13 @@ bool IVUsers::AddUsersIfInteresting(Instruction *I) {
if (LI->getLoopFor(User->getParent()) != L) {
if (isa<PHINode>(User) || Processed.count(User) ||
!AddUsersIfInteresting(User)) {
- DOUT << "FOUND USER in other loop: " << *User
+ DOUT << "FOUND USER in other loop: " << *User << '\n'
<< " OF SCEV: " << *ISE << "\n";
AddUserToIVUsers = true;
}
} else if (Processed.count(User) ||
!AddUsersIfInteresting(User)) {
- DOUT << "FOUND USER: " << *User
+ DOUT << "FOUND USER: " << *User << '\n'
<< " OF SCEV: " << *ISE << "\n";
AddUserToIVUsers = true;
}
OpenPOWER on IntegriCloud