diff options
author | Kārlis Seņko <karlis3p70l1ij@gmail.com> | 2019-01-09 23:04:14 +0200 |
---|---|---|
committer | Kārlis Seņko <karlis3p70l1ij@gmail.com> | 2019-01-09 23:04:14 +0200 |
commit | 1986a8069176b8db72cec4c58a2714315d2bde93 (patch) | |
tree | e4991d3b330204fcced5265b33cb58531de9fd9a /lib/compilers/swift.js | |
parent | f523db681406359a9ad77f7a355a6caa1566e737 (diff) | |
download | compiler-explorer-1986a8069176b8db72cec4c58a2714315d2bde93.tar.gz compiler-explorer-1986a8069176b8db72cec4c58a2714315d2bde93.zip |
Enable cfg for x86 LLVM based compilers and gcc.
Diffstat (limited to 'lib/compilers/swift.js')
-rw-r--r-- | lib/compilers/swift.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/compilers/swift.js b/lib/compilers/swift.js index ff43f76f2..0412df6fb 100644 --- a/lib/compilers/swift.js +++ b/lib/compilers/swift.js @@ -25,6 +25,9 @@ const BaseCompiler = require('../base-compiler'); class SwiftCompiler extends BaseCompiler { + isCfgCompiler(/*compilerVersion*/) { + return true; + } } module.exports = SwiftCompiler; |