From 01d865abe818bdf41baf966bc456a9f5d45e3cc9 Mon Sep 17 00:00:00 2001 From: Santiago Aboy Solanes Date: Thu, 29 Aug 2024 14:10:17 +0100 Subject: Typo fix: instrinsic -> intrinsic Change-Id: I6116b792d156970cefc277d2ea6af05627917d09 --- compiler/optimizing/graph_checker.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler/optimizing/graph_checker.cc') 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()) { -- cgit v1.2.3-59-g8ed1b