summaryrefslogtreecommitdiff
path: root/source/slang/slang-options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-options.cpp')
-rw-r--r--source/slang/slang-options.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/slang/slang-options.cpp b/source/slang/slang-options.cpp
index 28953b4ed..3227e2de4 100644
--- a/source/slang/slang-options.cpp
+++ b/source/slang/slang-options.cpp
@@ -809,10 +809,10 @@ void initCommandOptions(CommandOptions& options)
"-output-includes",
nullptr,
"Print the hierarchy of the processed source files."},
- {OptionKind::SerialIr,
+ {OptionKind::REMOVED_SerialIR,
"-serial-ir",
nullptr,
- "Serialize the IR between front-end and back-end."},
+ "[REMOVED] Serialize the IR between front-end and back-end."},
{OptionKind::SkipCodeGen, "-skip-codegen", nullptr, "Skip the code generation phase."},
{OptionKind::ValidateIr, "-validate-ir", nullptr, "Validate the IR between the phases."},
{OptionKind::VerbosePaths,
@@ -2394,9 +2394,6 @@ SlangResult OptionsParser::_parse(int argc, char const* const* argv)
case OptionKind::ReproFileSystem:
SLANG_RETURN_ON_FAIL(_parseReproFileSystem(arg));
break;
- case OptionKind::SerialIr:
- m_frontEndReq->useSerialIRBottleneck = true;
- break;
case OptionKind::VerbosePaths:
m_requestImpl->getSink()->setFlag(DiagnosticSink::Flag::VerbosePath);
break;