diff options
author | RabsRincon <rubrinbla@gmail.com> | 2018-03-08 14:17:30 +0100 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2018-03-08 14:17:30 +0100 |
commit | d8e2bf164e1650bca138f01c13290238ecc6645c (patch) | |
tree | 80176c9fcbaa6eaea3fce36ef8a93e08433eaa95 /lib/compilers/dmd.js | |
parent | 493e6dfbca2b96426f09e72ad7a5e03dcf0eeb33 (diff) | |
download | compiler-explorer-d8e2bf164e1650bca138f01c13290238ecc6645c.tar.gz compiler-explorer-d8e2bf164e1650bca138f01c13290238ecc6645c.zip |
Add NASM 2.13.03
Diffstat (limited to 'lib/compilers/dmd.js')
-rw-r--r-- | lib/compilers/dmd.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/dmd.js b/lib/compilers/dmd.js index 2f8931170..a4cdcfd46 100644 --- a/lib/compilers/dmd.js +++ b/lib/compilers/dmd.js @@ -42,7 +42,7 @@ class DMDCompiler extends BaseCompiler { } getOutputFilename(dirPath, outputFilebase) { - return path.join(dirPath, `${outputFilebase}.s`); // NB keep lower case as ldc compiler `tolower`s the output name + return path.join(dirPath, `${outputFilebase}.s`); } objdump(outputFilename, result, maxSize, intelAsm, demangle) { |