diff options
author | Shengchen Kan <shengchen.kan@intel.com> | 2024-08-02 23:49:05 +0800 |
---|---|---|
committer | Shengchen Kan <shengchen.kan@intel.com> | 2024-08-02 23:54:40 +0800 |
commit | 60054dcd81d027db72b9ef305184e97c55465458 (patch) | |
tree | 5e52d958b31d20a26a0cbd4e33e903bd4d38e6f9 /llvm/lib/Transforms/Utils/LoopSimplify.cpp | |
parent | 937cbe270e5ee4e2e4d6f5568768a55d5e383076 (diff) | |
download | llvm-60054dcd81d027db72b9ef305184e97c55465458.zip llvm-60054dcd81d027db72b9ef305184e97c55465458.tar.gz llvm-60054dcd81d027db72b9ef305184e97c55465458.tar.bz2 |
[NFC] Lowercase the first letter of functions defined in SimplifyCFG.cpp
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopSimplify.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopSimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopSimplify.cpp b/llvm/lib/Transforms/Utils/LoopSimplify.cpp index a764fef..2b2f82f 100644 --- a/llvm/lib/Transforms/Utils/LoopSimplify.cpp +++ b/llvm/lib/Transforms/Utils/LoopSimplify.cpp @@ -659,7 +659,7 @@ ReprocessLoop: // The block has now been cleared of all instructions except for // a comparison and a conditional branch. SimplifyCFG may be able // to fold it now. - if (!FoldBranchToCommonDest(BI, /*DTU=*/nullptr, MSSAU)) + if (!foldBranchToCommonDest(BI, /*DTU=*/nullptr, MSSAU)) continue; // Success. The block is now dead, so remove it from the loop, |