summaryrefslogtreecommitdiff
path: root/compiler/optimizing/graph_checker.cc
diff options
context:
space:
mode:
author Santiago Aboy Solanes <solanes@google.com> 2024-08-29 14:10:17 +0100
committer Santiago Aboy Solanes <solanes@google.com> 2024-09-02 12:19:35 +0000
commit01d865abe818bdf41baf966bc456a9f5d45e3cc9 (patch)
treeac7886f941f8b42c0affde36ebe51f11ff84531a /compiler/optimizing/graph_checker.cc
parent8ff3ec2695b65c0d35ff54b7649a12a9c9427eab (diff)
Typo fix: instrinsic -> intrinsic
Change-Id: I6116b792d156970cefc277d2ea6af05627917d09
Diffstat (limited to 'compiler/optimizing/graph_checker.cc')
-rw-r--r--compiler/optimizing/graph_checker.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/graph_checker.cc b/compiler/optimizing/graph_checker.cc
index db76c04bc0..ad0d0fb2ca 100644
--- a/compiler/optimizing/graph_checker.cc
+++ b/compiler/optimizing/graph_checker.cc
@@ -757,7 +757,7 @@ void GraphChecker::VisitInvoke(HInvoke* invoke) {
std::stringstream ss;
ss << invoke->GetIntrinsic();
AddError(
- StringPrintf("The graph contains the instrinsic %s which should have been replaced in the "
+ StringPrintf("The graph contains the intrinsic %s which should have been replaced in the "
"instruction builder: %s:%d in block %d.",
ss.str().c_str(),
invoke->DebugName(),
@@ -768,7 +768,7 @@ void GraphChecker::VisitInvoke(HInvoke* invoke) {
void GraphChecker::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
// We call VisitInvoke and not VisitInstruction to de-duplicate the common code: always throwing
- // and instrinsic checks.
+ // and intrinsic checks.
VisitInvoke(invoke);
if (invoke->IsStaticWithExplicitClinitCheck()) {