Skip to content

Commit

Permalink
Fix more missing newlines.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79244 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Dan Gohman committed Aug 17, 2009
1 parent 48cc73d commit 094ae45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Analysis/IVUsers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 094ae45

Please sign in to comment.