diff options
Diffstat (limited to 'lib/compilers')
-rw-r--r-- | lib/compilers/ldc.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/compilers/ldc.js b/lib/compilers/ldc.js index ced24df3a..748aeca13 100644 --- a/lib/compilers/ldc.js +++ b/lib/compilers/ldc.js @@ -86,7 +86,8 @@ class LDCCompiler extends BaseCompiler { // Override the IR processing method for LDC because the output file is different from clang. processIrOutput(output, filters) { - const irPath = this.getOutputFilename(path.dirname(output.inputFilename), this.outputFilebase).replace('.s', '.ll'); + const irPath = this.getOutputFilename(path.dirname(output.inputFilename), this.outputFilebase) + .replace('.s', '.ll'); if (fs.existsSync(irPath)) { const output = fs.readFileSync(irPath, 'utf-8'); // uses same filters as main compiler |