diff options
Diffstat (limited to 'lib/compilers/swift.ts')
-rw-r--r-- | lib/compilers/swift.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/compilers/swift.ts b/lib/compilers/swift.ts index 6b4406aeb..7d943752f 100644 --- a/lib/compilers/swift.ts +++ b/lib/compilers/swift.ts @@ -35,10 +35,10 @@ export class SwiftCompiler extends BaseCompiler { constructor(info: PreliminaryCompilerInfo, env) { super(info, env); - this.compiler.supportsLLVMOptPipelineView = true; - this.compiler.llvmOptArg = ['-Xllvm', '-print-after-all', '-Xllvm', '-print-before-all']; - this.compiler.llvmOptModuleScopeArg = ['-Xllvm', '-print-module-scope']; - this.compiler.llvmOptNoDiscardValueNamesArg = []; + this.compiler.supportsOptPipelineView = true; + this.compiler.optPipelineArg = ['-Xllvm', '-print-after-all', '-Xllvm', '-print-before-all']; + this.compiler.optPipelineModuleScopeArg = ['-Xllvm', '-print-module-scope']; + this.compiler.optPipelineNoDiscardValueNamesArg = []; } override getSharedLibraryPathsAsArguments() { |