diff options
Diffstat (limited to 'compiler/optimizing/graph_checker.cc')
-rw-r--r-- | compiler/optimizing/graph_checker.cc | 4 |
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()) { |