aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/CL.js
diff options
context:
space:
mode:
authorMatt Godbolt <mgodbolt@drw.com>2016-12-19 18:20:21 -0600
committerMatt Godbolt <mgodbolt@drw.com>2016-12-19 18:20:21 -0600
commit9af5650aff4c9df836637e922483e9a1293b9d19 (patch)
treed7c8ea1b06a4c295fe59e55a38dd5c45ae92913b /lib/compilers/CL.js
parent7990e42f7ccad1f9ff8e90d425831d173f9992a4 (diff)
downloadcompiler-explorer-9af5650aff4c9df836637e922483e9a1293b9d19.tar.gz
compiler-explorer-9af5650aff4c9df836637e922483e9a1293b9d19.zip
Refactor so as not to rely on magic comments in MS-derived compilation output
Diffstat (limited to 'lib/compilers/CL.js')
-rw-r--r--lib/compilers/CL.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/compilers/CL.js b/lib/compilers/CL.js
index 693e6044d..10fc27b93 100644
--- a/lib/compilers/CL.js
+++ b/lib/compilers/CL.js
@@ -23,9 +23,11 @@
// POSSIBILITY OF SUCH DAMAGE.
var Compile = require('../base-compiler');
+var asm = require('../asm-cl');
function compileCl(info, env) {
var compile = new Compile(info, env);
+ compile.asm = new asm.AsmParser(env.compilerProps);
info.supportsFiltersInBinary = true;
if (process.platform == "linux") {
var wine = env.gccProps("wine");