diff options
Diffstat (limited to 'lib/compilers')
-rw-r--r-- | lib/compilers/c3c.ts | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/compilers/c3c.ts b/lib/compilers/c3c.ts index c1bf87ae2..e1c387b71 100644 --- a/lib/compilers/c3c.ts +++ b/lib/compilers/c3c.ts @@ -15,14 +15,7 @@ export class C3Compiler extends BaseCompiler { } override optionsForFilter(filters: ParseFiltersAndOutputOptions, outputFilename: string) { - return [ - 'compile-only', - '-g', - '-l', - 'pthread', - '--no-obj', - '--emit-asm', - ]; + return ['compile-only', '-g', '-l', 'pthread', '--no-obj', '--emit-asm']; } override getIrOutputFilename(inputFilename: string): string { |