1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Fix more missing newlines.

llvm-svn: 79244
This commit is contained in:
Dan Gohman 2009-08-17 15:29:31 +00:00
parent 1749b4bb8a
commit 7c8c5606ce

View File

@ -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;
}