LoopUtils: Remove defaults for arguments that are always specified. NFC
authorJustin Bogner <mail@justinbogner.com>
Tue, 15 Dec 2015 05:52:13 +0000 (05:52 +0000)
committerJustin Bogner <mail@justinbogner.com>
Tue, 15 Dec 2015 05:52:13 +0000 (05:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255620 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Transforms/Utils/LoopUtils.h

index da92b25f4f03d0a0e810b91185e38f5b01af4663..79e433f337ef7a3d3d8849de13123e6f81c2fc65 100644 (file)
@@ -302,7 +302,7 @@ BasicBlock *InsertPreheaderForLoop(Loop *L, Pass *P);
 /// will optionally update \c AliasAnalysis and \c ScalarEvolution analyses if
 /// passed into it.
 bool simplifyLoop(Loop *L, DominatorTree *DT, LoopInfo *LI, Pass *PP,
-                  ScalarEvolution *SE = nullptr, AssumptionCache *AC = nullptr);
+                  ScalarEvolution *SE, AssumptionCache *AC);
 
 /// \brief Put loop into LCSSA form.
 ///
@@ -316,7 +316,7 @@ bool simplifyLoop(Loop *L, DominatorTree *DT, LoopInfo *LI, Pass *PP,
 ///
 /// Returns true if any modifications are made to the loop.
 bool formLCSSA(Loop &L, DominatorTree &DT, LoopInfo *LI,
-               ScalarEvolution *SE = nullptr);
+               ScalarEvolution *SE);
 
 /// \brief Put a loop nest into LCSSA form.
 ///
@@ -328,7 +328,7 @@ bool formLCSSA(Loop &L, DominatorTree &DT, LoopInfo *LI,
 ///
 /// Returns true if any modifications are made to the loop.
 bool formLCSSARecursively(Loop &L, DominatorTree &DT, LoopInfo *LI,
-                          ScalarEvolution *SE = nullptr);
+                          ScalarEvolution *SE);
 
 /// \brief Walk the specified region of the CFG (defined by all blocks
 /// dominated by the specified block, and that are in the current loop) in