aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers
diff options
context:
space:
mode:
authorMatt Godbolt <matt@godbolt.org>2023-12-11 22:07:10 -0600
committerMatt Godbolt <matt@godbolt.org>2023-12-11 22:07:10 -0600
commit1815ca1b9926c8605dddfb634a87fbcfbb858e5a (patch)
tree46c84b29034d4aa2c634d2fc4a4264cc97fb815e /lib/compilers
parent7e139412a3cff1e3ae62cb2d155a57835cf7ab64 (diff)
downloadcompiler-explorer-1815ca1b9926c8605dddfb634a87fbcfbb858e5a.tar.gz
compiler-explorer-1815ca1b9926c8605dddfb634a87fbcfbb858e5a.zip
Prettier the files, and ensure the checks check that next timegh-9932
Diffstat (limited to 'lib/compilers')
-rw-r--r--lib/compilers/racket.ts25
1 files changed, 5 insertions, 20 deletions
diff --git a/lib/compilers/racket.ts b/lib/compilers/racket.ts
index 57a4fb0bf..909b4a790 100644
--- a/lib/compilers/racket.ts
+++ b/lib/compilers/racket.ts
@@ -103,15 +103,9 @@ export class RacketCompiler extends BaseCompiler {
staticLibLinks: string[],
) {
// Move input file to end of options
- return options.concat(
- userOptions,
- libIncludes,
- libOptions,
- libPaths,
- libLinks,
- staticLibLinks,
- [this.filename(inputFilename)],
- );
+ return options.concat(userOptions, libIncludes, libOptions, libPaths, libLinks, staticLibLinks, [
+ this.filename(inputFilename),
+ ]);
}
override async runCompiler(
@@ -203,12 +197,7 @@ export class RacketCompiler extends BaseCompiler {
execOptions.env['PLT_LINKLET_SHOW_ASSEMBLY'] = '1';
const compileStart = performance.now();
- const output = await this.runCompiler(
- this.compiler.exe,
- options,
- pipelineFile,
- execOptions,
- );
+ const output = await this.runCompiler(this.compiler.exe, options, pipelineFile, execOptions);
const compileEnd = performance.now();
if (output.timedOut) {
@@ -258,10 +247,6 @@ export class RacketCompiler extends BaseCompiler {
optPipelineOptions: OptPipelineBackendOptions,
debugPatched?: boolean,
) {
- return this.passDumpParser.process(
- output.stderr,
- filters,
- optPipelineOptions,
- );
+ return this.passDumpParser.process(output.stderr, filters, optPipelineOptions);
}
}