diff options
author | Rubén <RabsRincon@users.noreply.github.com> | 2018-01-28 02:07:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-28 02:07:17 +0100 |
commit | 40b42c7c94cdaa24592dd247e5097d6b21f72176 (patch) | |
tree | e33054b4e711dabb08be92b389806fcb414054aa /lib/compilers/ispc.js | |
parent | 3b07b3c3f2abebf3924f927309d13448cd3d9b0f (diff) | |
parent | 67235ec5b7dc70efd23f187dea750660e42ce391 (diff) | |
download | compiler-explorer-40b42c7c94cdaa24592dd247e5097d6b21f72176.tar.gz compiler-explorer-40b42c7c94cdaa24592dd247e5097d6b21f72176.zip |
Merge pull request #793 from partouf/es6unittest
Es6unittest
Diffstat (limited to 'lib/compilers/ispc.js')
-rw-r--r-- | lib/compilers/ispc.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/compilers/ispc.js b/lib/compilers/ispc.js index ec3a249e3..adf30f73b 100644 --- a/lib/compilers/ispc.js +++ b/lib/compilers/ispc.js @@ -25,11 +25,6 @@ const BaseCompiler = require('../base-compiler'); class ISPCCompiler extends BaseCompiler { - constructor(info, env) { - super(info, env); - return this.initialise(); - } - optionsForFilter(filters, outputFilename, userOptions) { return ['--target=sse2-i32x4', '--emit-asm', '-g', '-o', this.filename(outputFilename)]; } |