aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/Loads.cpp
diff options
context:
space:
mode:
authorPhilip Reames <listmail@philipreames.com>2021-04-13 19:02:11 -0700
committerPhilip Reames <listmail@philipreames.com>2021-04-13 19:02:41 -0700
commit00c8be3f93b977b7ba94906199392d3ff329376a (patch)
treed537c6aff34363d6d9dc45d4dbfe1c5b1c44515e /llvm/lib/Analysis/Loads.cpp
parent479b672ff9a9230dee37fad97413a88bc0ab362b (diff)
downloadllvm-00c8be3f93b977b7ba94906199392d3ff329376a.zip
llvm-00c8be3f93b977b7ba94906199392d3ff329376a.tar.gz
llvm-00c8be3f93b977b7ba94906199392d3ff329376a.tar.bz2
fix whitespace type
Diffstat (limited to 'llvm/lib/Analysis/Loads.cpp')
-rw-r--r--llvm/lib/Analysis/Loads.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/Loads.cpp b/llvm/lib/Analysis/Loads.cpp
index 2ae1fd5..da4ee7d 100644
--- a/llvm/lib/Analysis/Loads.cpp
+++ b/llvm/lib/Analysis/Loads.cpp
@@ -416,7 +416,7 @@ bool llvm::isSafeToLoadUnconditionally(Value *V, Type *Ty, Align Alignment,
return isSafeToLoadUnconditionally(V, Alignment, Size, DL, ScanFrom, DT, TLI);
}
- /// DefMaxInstsToScan - the default number of maximum instructions
+/// DefMaxInstsToScan - the default number of maximum instructions
/// to scan in the block, used by FindAvailableLoadedValue().
/// FindAvailableLoadedValue() was introduced in r60148, to improve jump
/// threading in part by eliminating partially redundant loads.