[llvm] baab447 - [llc] Report error in lieu of warning for invalid cl option (#128846)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 16 22:54:57 PDT 2025
Author: Akshat Oke
Date: 2025-03-17T11:24:54+05:30
New Revision: baab447aadd59b34bd838584b16d11475329853f
URL: https://github.com/llvm/llvm-project/commit/baab447aadd59b34bd838584b16d11475329853f
DIFF: https://github.com/llvm/llvm-project/commit/baab447aadd59b34bd838584b16d11475329853f.diff
LOG: [llc] Report error in lieu of warning for invalid cl option (#128846)
Added:
Modified:
llvm/test/tools/llc/new-pm/option-conflict.ll
llvm/tools/llc/NewPMDriver.cpp
llvm/tools/llc/llc.cpp
Removed:
################################################################################
diff --git a/llvm/test/tools/llc/new-pm/option-conflict.ll b/llvm/test/tools/llc/new-pm/option-conflict.ll
index 5847a32058756..5031e950fee21 100644
--- a/llvm/test/tools/llc/new-pm/option-conflict.ll
+++ b/llvm/test/tools/llc/new-pm/option-conflict.ll
@@ -1,3 +1,3 @@
; RUN: not llc -mtriple=x86_64-pc-linux-gnu -passes=foo -start-before=mergeicmps -stop-after=gc-lowering -filetype=null %s 2>&1 | FileCheck %s
-; CHECK: warning: --passes cannot be used with start-before and stop-after.
+; CHECK: error: --passes cannot be used with start-before and stop-after.
diff --git a/llvm/tools/llc/NewPMDriver.cpp b/llvm/tools/llc/NewPMDriver.cpp
index fa935b895a20a..5c6909d080c70 100644
--- a/llvm/tools/llc/NewPMDriver.cpp
+++ b/llvm/tools/llc/NewPMDriver.cpp
@@ -93,7 +93,7 @@ int llvm::compileModuleWithNewPM(
CodeGenFileType FileType) {
if (!PassPipeline.empty() && TargetPassConfig::hasLimitedCodeGenPipeline()) {
- WithColor::warning(errs(), Arg0)
+ WithColor::error(errs(), Arg0)
<< "--passes cannot be used with "
<< TargetPassConfig::getLimitedCodeGenPipelineReason() << ".\n";
return 1;
@@ -139,7 +139,7 @@ int llvm::compileModuleWithNewPM(
// selection.
if (!MIR) {
- WithColor::warning(errs(), Arg0) << "-passes is for .mir file only.\n";
+ WithColor::error(errs(), Arg0) << "-passes is for .mir file only.\n";
return 1;
}
diff --git a/llvm/tools/llc/llc.cpp b/llvm/tools/llc/llc.cpp
index bf475a2110a4d..a97d07dec722b 100644
--- a/llvm/tools/llc/llc.cpp
+++ b/llvm/tools/llc/llc.cpp
@@ -678,7 +678,7 @@ static int compileModule(char **argv, LLVMContext &Context) {
// selection.
if (!getRunPassNames().empty()) {
if (!MIR) {
- WithColor::warning(errs(), argv[0])
+ WithColor::error(errs(), argv[0])
<< "run-pass is for .mir file only.\n";
delete MMIWP;
return 1;
@@ -686,7 +686,7 @@ static int compileModule(char **argv, LLVMContext &Context) {
TargetPassConfig *PTPC = Target->createPassConfig(PM);
TargetPassConfig &TPC = *PTPC;
if (TPC.hasLimitedCodeGenPipeline()) {
- WithColor::warning(errs(), argv[0])
+ WithColor::error(errs(), argv[0])
<< "run-pass cannot be used with "
<< TPC.getLimitedCodeGenPipelineReason() << ".\n";
delete PTPC;
More information about the llvm-commits
mailing list