summaryrefslogtreecommitdiff
path: root/bolt/lib/Core/BinaryFunctionCallGraph.cpp
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2025-10-14 14:45:40 +0200
committerGitHub <noreply@github.com>2025-10-14 14:45:40 +0200
commit0fc05aa1c6d76a1830f2cf9227e15b168ccc1c08 (patch)
treebc334628b5bd2a316ebca5274f2306a3c5e4bf97 /bolt/lib/Core/BinaryFunctionCallGraph.cpp
parentb228a18e572ac7ab7a2f61b97c0a2dd3565a8201 (diff)
[bolt] Fix typos discovered by codespell (#124726)
https://github.com/codespell-project/codespell ```bash codespell bolt --skip="*.yaml,Maintainers.txt" --write-changes \ --ignore-words-list=acount,alledges,ans,archtype,defin,iself,mis,mmaped,othere,outweight,vas ```
Diffstat (limited to 'bolt/lib/Core/BinaryFunctionCallGraph.cpp')
-rw-r--r--bolt/lib/Core/BinaryFunctionCallGraph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bolt/lib/Core/BinaryFunctionCallGraph.cpp b/bolt/lib/Core/BinaryFunctionCallGraph.cpp
index f0c46a82fc74..af2241998c93 100644
--- a/bolt/lib/Core/BinaryFunctionCallGraph.cpp
+++ b/bolt/lib/Core/BinaryFunctionCallGraph.cpp
@@ -122,7 +122,7 @@ buildCallGraph(BinaryContext &BC, CgFilterFunction Filter, bool CgFromPerfData,
// create a node for a function unless it was the target of a call from
// a hot block. The alternative would be to set the count to one or
// accumulate the number of calls from the callsite into the function
- // samples. Results from perfomance testing seem to favor the zero
+ // samples. Results from performance testing seem to favor the zero
// count though, so I'm leaving it this way for now.
return Cg.addNode(Function, Size, Function->getKnownExecutionCount());
}