aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/opt.js
diff options
context:
space:
mode:
authorRabsRincon <rubrinbla@gmail.com>2018-03-08 14:17:30 +0100
committerRabsRincon <rubrinbla@gmail.com>2018-03-08 14:17:30 +0100
commitd8e2bf164e1650bca138f01c13290238ecc6645c (patch)
tree80176c9fcbaa6eaea3fce36ef8a93e08433eaa95 /lib/compilers/opt.js
parent493e6dfbca2b96426f09e72ad7a5e03dcf0eeb33 (diff)
downloadcompiler-explorer-d8e2bf164e1650bca138f01c13290238ecc6645c.tar.gz
compiler-explorer-d8e2bf164e1650bca138f01c13290238ecc6645c.zip
Add NASM 2.13.03
Diffstat (limited to 'lib/compilers/opt.js')
-rw-r--r--lib/compilers/opt.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/compilers/opt.js b/lib/compilers/opt.js
index 5098ca985..c34a28a4c 100644
--- a/lib/compilers/opt.js
+++ b/lib/compilers/opt.js
@@ -30,8 +30,7 @@ class OptCompiler extends BaseCompiler {
}
optionsForFilter(filters, outputFilename) {
- let options = ['-o', this.filename(outputFilename), '-S'];
- return options;
+ return ['-o', this.filename(outputFilename), '-S'];
}
}