diff options
author | partouf <partouf@gmail.com> | 2018-01-28 01:50:06 +0100 |
---|---|---|
committer | partouf <partouf@gmail.com> | 2018-01-28 01:50:06 +0100 |
commit | b46611d8d452e96228d78bea658686969b85aecf (patch) | |
tree | f18d9dc4370d5513c13a89ba02cc18bc5cdfc46e /lib/compilers/ispc.js | |
parent | 68a7f9420dbb318303e255de14aff46721d933ac (diff) | |
download | compiler-explorer-b46611d8d452e96228d78bea658686969b85aecf.tar.gz compiler-explorer-b46611d8d452e96228d78bea658686969b85aecf.zip |
remove obsolete/empty constructors
Diffstat (limited to 'lib/compilers/ispc.js')
-rw-r--r-- | lib/compilers/ispc.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/compilers/ispc.js b/lib/compilers/ispc.js index c4950f49d..adf30f73b 100644 --- a/lib/compilers/ispc.js +++ b/lib/compilers/ispc.js @@ -25,10 +25,6 @@ const BaseCompiler = require('../base-compiler'); class ISPCCompiler extends BaseCompiler { - constructor(info, env) { - super(info, env); - } - optionsForFilter(filters, outputFilename, userOptions) { return ['--target=sse2-i32x4', '--emit-asm', '-g', '-o', this.filename(outputFilename)]; } |