diff options
Diffstat (limited to 'lib/compilers/ispc.js')
-rw-r--r-- | lib/compilers/ispc.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/ispc.js b/lib/compilers/ispc.js index 1d39361ac..d59361b23 100644 --- a/lib/compilers/ispc.js +++ b/lib/compilers/ispc.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Matt Godbolt & Rubén Rincón +// Copyright (c) 2017-2020, Matt Godbolt & Rubén Rincón // All rights reserved. // // Redistribution and use in source and binary forms, with or without @@ -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=avx2-i32x8', '--emit-asm', '-g', '-o', this.filename(outputFilename)]; if (this.compiler.intelAsm && filters.intel && !filters.binary) { options = options.concat(this.compiler.intelAsm.split(" ")); } |