[llvm] 53445db - [Analysis] Fix a comment typo (NFC)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 25 13:19:05 PDT 2023
Author: Kazu Hirata
Date: 2023-08-25T13:18:57-07:00
New Revision: 53445db170ce293dc13cd71e4fa515c585b5298d
URL: https://github.com/llvm/llvm-project/commit/53445db170ce293dc13cd71e4fa515c585b5298d
DIFF: https://github.com/llvm/llvm-project/commit/53445db170ce293dc13cd71e4fa515c585b5298d.diff
LOG: [Analysis] Fix a comment typo (NFC)
Added:
Modified:
llvm/lib/Analysis/InlineCost.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Analysis/InlineCost.cpp b/llvm/lib/Analysis/InlineCost.cpp
index 9ff277f5334ece..a9de1dde7c7f71 100644
--- a/llvm/lib/Analysis/InlineCost.cpp
+++ b/llvm/lib/Analysis/InlineCost.cpp
@@ -817,7 +817,7 @@ class InlineCostCallAnalyzer final : public CallAnalyzer {
// Determine whether we should inline the given call site, taking into account
// both the size cost and the cycle savings. Return std::nullopt if we don't
- // have suficient profiling information to determine.
+ // have sufficient profiling information to determine.
std::optional<bool> costBenefitAnalysis() {
if (!CostBenefitAnalysisEnabled)
return std::nullopt;
More information about the llvm-commits
mailing list