[llvm] c78d056 - [llvm] Fix typo in comments (#108230)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 13 01:49:36 PDT 2024
Author: braw-lee
Date: 2024-09-13T04:49:33-04:00
New Revision: c78d056350b43a8357bebd15d1c4e6a097549776
URL: https://github.com/llvm/llvm-project/commit/c78d056350b43a8357bebd15d1c4e6a097549776
DIFF: https://github.com/llvm/llvm-project/commit/c78d056350b43a8357bebd15d1c4e6a097549776.diff
LOG: [llvm] Fix typo in comments (#108230)
Fixes #107949
Signed-off-by: Kushal Pal <kushalpal109 at gmail.com>
Added:
Modified:
llvm/include/llvm/Analysis/BranchProbabilityInfo.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/Analysis/BranchProbabilityInfo.h b/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
index 1ac5694b758fee..fbaeac251bc0e1 100644
--- a/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
+++ b/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
@@ -169,7 +169,7 @@ class BranchProbabilityInfo {
/// Test if an edge is hot relative to other out-edges of the Src.
///
/// Check whether this edge out of the source block is 'hot'. We define hot
- /// as having a relative probability >= 80%.
+ /// as having a relative probability > 80%.
bool isEdgeHot(const BasicBlock *Src, const BasicBlock *Dst) const;
/// Print an edge's probability.
More information about the llvm-commits
mailing list