diff options
author | Patrick Quist <partouf@gmail.com> | 2023-05-16 03:53:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 03:53:57 +0200 |
commit | 079d4957571398f72482ce156076b2d4fbddbbf7 (patch) | |
tree | 96a58133f203e4df4a55cf2171d5e354de605827 /lib/compilers/golang.ts | |
parent | d6deb08cee8a06b9163c4d3dad37af20453346fb (diff) | |
download | compiler-explorer-079d4957571398f72482ce156076b2d4fbddbbf7.tar.gz compiler-explorer-079d4957571398f72482ce156076b2d4fbddbbf7.zip |
Compiler overrides (#5001)gh-7408
Diffstat (limited to 'lib/compilers/golang.ts')
-rw-r--r-- | lib/compilers/golang.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/golang.ts b/lib/compilers/golang.ts index 5c0574de1..e9f2e3965 100644 --- a/lib/compilers/golang.ts +++ b/lib/compilers/golang.ts @@ -31,7 +31,7 @@ import {unwrap} from '../assert.js'; import {BaseCompiler} from '../base-compiler.js'; import * as utils from '../utils.js'; -import {ClangParser} from './argument-parsers.js'; +import {GolangParser} from './argument-parsers.js'; // Each arch has a list of jump instructions in // Go source src/cmd/asm/internal/arch. @@ -268,7 +268,7 @@ export class GolangCompiler extends BaseCompiler { return options; } - override getArgumentParser() { - return ClangParser; + override getArgumentParser(): any { + return GolangParser; } } |