diff options
author | Marc Poulhiès <dkm@kataplop.net> | 2021-11-11 15:28:21 +0100 |
---|---|---|
committer | Marc Poulhiès <dkm@kataplop.net> | 2021-11-11 15:28:21 +0100 |
commit | db5fcd6f656fbb2b891e13c2282f3c4cebe83d7c (patch) | |
tree | ee5f99f233f6526debbe1d212691b71a4823ccde | |
parent | 3f3c5744293c96798e231c08f3d50f5ffeaf46c8 (diff) | |
download | compiler-explorer-gh-1254.tar.gz compiler-explorer-gh-1254.zip |
fixup! Refactor GCC dump and GNAT expanded code creationgh-1254
-rw-r--r-- | lib/base-compiler.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/base-compiler.js b/lib/base-compiler.js index c5a0cf3e6..7050899f0 100644 --- a/lib/base-compiler.js +++ b/lib/base-compiler.js @@ -1210,7 +1210,8 @@ export class BaseCompiler { }))), ]); - // Both GNAT and GCC can produce their dump files along with the main compilation command. + // Both GNAT and GCC can produce their dump/expanded code files along + // with the main compilation command. const gnatDebugResult = (makeGnatDebug ? await this.processGnatDebugOutput(inputFilenameSafe, asmResult) : ''); |