diff options
author | Matt Godbolt <matt@godbolt.org> | 2019-04-06 12:26:33 -0500 |
---|---|---|
committer | Matt Godbolt <matt@godbolt.org> | 2019-04-11 05:56:19 -0500 |
commit | 74e3aba79d121f6ce61e27c14a9bc705d98c6158 (patch) | |
tree | bbf97376ec40e628d8954057e9fd57476730390d /lib/compilers/ispc.js | |
parent | 01804dbdfe89f73424b53663df69fc2dd3cfdd80 (diff) | |
download | compiler-explorer-74e3aba79d121f6ce61e27c14a9bc705d98c6158.tar.gz compiler-explorer-74e3aba79d121f6ce61e27c14a9bc705d98c6158.zip |
Add missing semicolon
Diffstat (limited to 'lib/compilers/ispc.js')
-rw-r--r-- | lib/compilers/ispc.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/ispc.js b/lib/compilers/ispc.js index 5d91f4446..1d39361ac 100644 --- a/lib/compilers/ispc.js +++ b/lib/compilers/ispc.js @@ -27,7 +27,7 @@ const BaseCompiler = require('../base-compiler'), class ISPCCompiler extends BaseCompiler { optionsForFilter(filters, outputFilename) { - let options = ['--target=sse2-i32x4', '--emit-asm', '-g', '-o', this.filename(outputFilename)] + let options = ['--target=sse2-i32x4', '--emit-asm', '-g', '-o', this.filename(outputFilename)]; if (this.compiler.intelAsm && filters.intel && !filters.binary) { options = options.concat(this.compiler.intelAsm.split(" ")); } |