diff options
Diffstat (limited to 'lib/compilers/golang.js')
-rw-r--r-- | lib/compilers/golang.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/golang.js b/lib/compilers/golang.js index a2052382b..c351757b9 100644 --- a/lib/compilers/golang.js +++ b/lib/compilers/golang.js @@ -51,13 +51,13 @@ class GolangCompiler extends BaseCompiler { })).join("\n"); } - postProcess(result, outputFilename, filters) { + postProcess(result) { result.asm = this.convertNewGoL(result.stdout); result.stdout = []; return Promise.resolve(result); } - optionsForFilter(filters, outputFilename, userOptions) { + optionsForFilter(filters, outputFilename) { // If we're dealing with an older version... if (this.compiler.id === '6g141') { return ['tool', '6g', '-g', '-o', outputFilename, '-S']; |