aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/opt.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/opt.ts')
-rw-r--r--lib/compilers/opt.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/compilers/opt.ts b/lib/compilers/opt.ts
index f5c0d4cb6..418230f31 100644
--- a/lib/compilers/opt.ts
+++ b/lib/compilers/opt.ts
@@ -35,10 +35,10 @@ export class OptCompiler extends BaseCompiler {
constructor(info: PreliminaryCompilerInfo, env) {
super(info, env);
- this.compiler.supportsLLVMOptPipelineView = true;
- this.compiler.llvmOptArg = ['-print-after-all', '-print-before-all'];
- this.compiler.llvmOptModuleScopeArg = ['-print-module-scope'];
- this.compiler.llvmOptNoDiscardValueNamesArg = [];
+ this.compiler.supportsOptPipelineView = true;
+ this.compiler.optPipelineArg = ['-print-after-all', '-print-before-all'];
+ this.compiler.optPipelineModuleScopeArg = ['-print-module-scope'];
+ this.compiler.optPipelineNoDiscardValueNamesArg = [];
}
override optionsForFilter(filters: ParseFiltersAndOutputOptions, outputFilename: string) {