Fix whitespace.
authorDan Gohman <gohman@apple.com>
Tue, 16 Feb 2010 19:42:34 +0000 (19:42 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 16 Feb 2010 19:42:34 +0000 (19:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96372 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopStrengthReduce.cpp

index 48d8919944227e615cc44726b806621b6a22a286..d1bf82ee4a5a75f1511cc995f0a45d64153dba5f 100644 (file)
@@ -640,9 +640,9 @@ void Cost::RateRegister(const SCEV *Reg,
 /// RatePrimaryRegister - Record this register in the set. If we haven't seen it
 /// before, rate it.
 void Cost::RatePrimaryRegister(const SCEV *Reg,
-                         SmallPtrSet<const SCEV *, 16> &Regs,
-                         const Loop *L,
-                         ScalarEvolution &SE, DominatorTree &DT) {
+                               SmallPtrSet<const SCEV *, 16> &Regs,
+                               const Loop *L,
+                               ScalarEvolution &SE, DominatorTree &DT) {
   if (Regs.insert(Reg))
     RateRegister(Reg, Regs, L, SE, DT);
 }