[llvm] a81b0c9 - [NFC][MLGO] Remove the word "inliner" in a generic error message.

Mircea Trofin via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 11 12:44:03 PST 2022


Author: Mircea Trofin
Date: 2022-01-11T12:39:16-08:00
New Revision: a81b0c978fd0197fb86ae23fd73db9282107942a

URL: https://github.com/llvm/llvm-project/commit/a81b0c978fd0197fb86ae23fd73db9282107942a
DIFF: https://github.com/llvm/llvm-project/commit/a81b0c978fd0197fb86ae23fd73db9282107942a.diff

LOG: [NFC][MLGO] Remove the word "inliner" in a generic error message.

Added: 
    

Modified: 
    llvm/lib/Analysis/ModelUnderTrainingRunner.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Analysis/ModelUnderTrainingRunner.cpp b/llvm/lib/Analysis/ModelUnderTrainingRunner.cpp
index c1385fc2ddc2..fab51d6a7aaf 100644
--- a/llvm/lib/Analysis/ModelUnderTrainingRunner.cpp
+++ b/llvm/lib/Analysis/ModelUnderTrainingRunner.cpp
@@ -28,7 +28,7 @@ ModelUnderTrainingRunner::ModelUnderTrainingRunner(
       ModelPath, InputSpecs, [&](size_t I) { return OutputSpecs[I].Spec; },
       OutputSpecs.size());
   if (!Evaluator || !Evaluator->isValid()) {
-    Ctx.emitError("Failed to create inliner saved model evaluator");
+    Ctx.emitError("Failed to create saved model evaluator");
     Evaluator.reset();
     return;
   }


        


More information about the llvm-commits mailing list