diff options
author | Austin Morton <apmorton@users.noreply.github.com> | 2020-09-25 11:21:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-25 11:21:30 -0400 |
commit | bac07fea6d2d4ed5fb7070c51e4cf3e56e3c155a (patch) | |
tree | 6e1fc418af36eb61f2d899b4114a1586ed1d0ae6 /lib/compilers/llvm-mca.js | |
parent | 697c8e9296705b563b1618f73d5630c70a2fa394 (diff) | |
download | compiler-explorer-bac07fea6d2d4ed5fb7070c51e4cf3e56e3c155a.tar.gz compiler-explorer-bac07fea6d2d4ed5fb7070c51e4cf3e56e3c155a.zip |
Eliminate all dynamic require statements (#2230)
Diffstat (limited to 'lib/compilers/llvm-mca.js')
-rw-r--r-- | lib/compilers/llvm-mca.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/compilers/llvm-mca.js b/lib/compilers/llvm-mca.js index eb885e21a..26459731c 100644 --- a/lib/compilers/llvm-mca.js +++ b/lib/compilers/llvm-mca.js @@ -27,6 +27,8 @@ const AnalysisTool = require('./analysis-tool'), // Plain compiler, which just runs the tool and returns whatever the output was class LLVMmcaTool extends AnalysisTool { + static get key() { return 'llvm-mca'; } + supportsObjdump() { return false; } getOutputFilenameArgs(filename) { |