aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbraw-lee <93831198+braw-lee@users.noreply.github.com>2024-09-13 14:19:33 +0530
committerGitHub <noreply@github.com>2024-09-13 04:49:33 -0400
commitc78d056350b43a8357bebd15d1c4e6a097549776 (patch)
tree47a18c78768976c2df5005aab23be0461b386e49
parent09a4c23eb410d4be52202bed21c967a3653c3544 (diff)
downloadllvm-c78d056350b43a8357bebd15d1c4e6a097549776.zip
llvm-c78d056350b43a8357bebd15d1c4e6a097549776.tar.gz
llvm-c78d056350b43a8357bebd15d1c4e6a097549776.tar.bz2
[llvm] Fix typo in comments (#108230)
Fixes #107949 Signed-off-by: Kushal Pal <kushalpal109@gmail.com>
-rw-r--r--llvm/include/llvm/Analysis/BranchProbabilityInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Analysis/BranchProbabilityInfo.h b/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
index 1ac5694..fbaeac2 100644
--- a/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
+++ b/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
@@ -169,7 +169,7 @@ public:
/// 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.