diff options
| author | Justin Bogner <mail@justinbogner.com> | 2015-12-15 05:52:13 +0000 |
|---|---|---|
| committer | Justin Bogner <mail@justinbogner.com> | 2015-12-15 05:52:13 +0000 |
| commit | 27966e2175c490dc90713c3c41b23e8fd279d88a (patch) | |
| tree | 1a88076531c814ba18a986ab61f7b21b4411152a | |
| parent | 40fc2e391af8213d65bc79dcb6f4d38e37395c44 (diff) | |
| download | bcm5719-llvm-27966e2175c490dc90713c3c41b23e8fd279d88a.tar.gz bcm5719-llvm-27966e2175c490dc90713c3c41b23e8fd279d88a.zip | |
LoopUtils: Remove defaults for arguments that are always specified. NFC
llvm-svn: 255620
| -rw-r--r-- | llvm/include/llvm/Transforms/Utils/LoopUtils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Transforms/Utils/LoopUtils.h b/llvm/include/llvm/Transforms/Utils/LoopUtils.h index da92b25f4f0..79e433f337e 100644 --- a/llvm/include/llvm/Transforms/Utils/LoopUtils.h +++ b/llvm/include/llvm/Transforms/Utils/LoopUtils.h @@ -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 |

