diff options
author | Kārlis Seņko <karlis3p70l1ij@gmail.com> | 2019-01-09 23:04:14 +0200 |
---|---|---|
committer | Kārlis Seņko <karlis3p70l1ij@gmail.com> | 2019-01-09 23:04:14 +0200 |
commit | 1986a8069176b8db72cec4c58a2714315d2bde93 (patch) | |
tree | e4991d3b330204fcced5265b33cb58531de9fd9a /lib/compilers/ispc.js | |
parent | f523db681406359a9ad77f7a355a6caa1566e737 (diff) | |
download | compiler-explorer-1986a8069176b8db72cec4c58a2714315d2bde93.tar.gz compiler-explorer-1986a8069176b8db72cec4c58a2714315d2bde93.zip |
Enable cfg for x86 LLVM based compilers and gcc.
Diffstat (limited to 'lib/compilers/ispc.js')
-rw-r--r-- | lib/compilers/ispc.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/compilers/ispc.js b/lib/compilers/ispc.js index fc0373513..87f63dab0 100644 --- a/lib/compilers/ispc.js +++ b/lib/compilers/ispc.js @@ -28,6 +28,10 @@ class ISPCCompiler extends BaseCompiler { optionsForFilter(filters, outputFilename) { return ['--target=sse2-i32x4', '--emit-asm', '-g', '-o', this.filename(outputFilename)]; } + + isCfgCompiler(/*compilerVersion*/) { + return true; + } } module.exports = ISPCCompiler; |