diff options
author | Xin Tong <trent.xin.tong@gmail.com> | 2017-03-02 08:39:11 +0000 |
---|---|---|
committer | Xin Tong <trent.xin.tong@gmail.com> | 2017-03-02 08:39:11 +0000 |
commit | fb0dc6206e4f76c33d8d489351d7d11151a8eed4 (patch) | |
tree | e45281be7fe58f85ccf2a99b31a3f769c7ac7f48 | |
parent | d993e76a18b1ee309153c6c22abad0b0f03977f1 (diff) | |
download | bcm5719-llvm-fb0dc6206e4f76c33d8d489351d7d11151a8eed4.tar.gz bcm5719-llvm-fb0dc6206e4f76c33d8d489351d7d11151a8eed4.zip |
Fix typo. NFCI
llvm-svn: 296735
-rw-r--r-- | llvm/lib/Transforms/Scalar/JumpThreading.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/JumpThreading.cpp b/llvm/lib/Transforms/Scalar/JumpThreading.cpp index 85e7a939991..fb784ff6532 100644 --- a/llvm/lib/Transforms/Scalar/JumpThreading.cpp +++ b/llvm/lib/Transforms/Scalar/JumpThreading.cpp @@ -999,7 +999,7 @@ bool JumpThreadingPass::SimplifyPartiallyRedundantLoad(LoadInst *LI) { &IsLoadCSE, &NumScanedInst); // If PredBB has a single predecessor, continue scanning through the single - // precessor. + // predecessor. BasicBlock *SinglePredBB = PredBB; while (!PredAvailable && SinglePredBB && BBIt == SinglePredBB->begin() && NumScanedInst < DefMaxInstsToScan) { |