diff options
author | Matt Godbolt <matt@godbolt.org> | 2019-03-21 20:31:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-21 20:31:42 -0500 |
commit | b87322568ed7f73a8583cdce707f68f07a0995dd (patch) | |
tree | 387ffc9ba2487bea8c6ab9eb7c40d03cd1e74dc6 /lib/compilers/llvm-mca.js | |
parent | b8815fbdb20261634919d976310c13e945249250 (diff) | |
parent | a47efe6d65f86024f46be5ef96139bb2f67dca73 (diff) | |
download | compiler-explorer-b87322568ed7f73a8583cdce707f68f07a0995dd.tar.gz compiler-explorer-b87322568ed7f73a8583cdce707f68f07a0995dd.zip |
Merge branch 'master' into llvm
Diffstat (limited to 'lib/compilers/llvm-mca.js')
-rw-r--r-- | lib/compilers/llvm-mca.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/compilers/llvm-mca.js b/lib/compilers/llvm-mca.js index 47e0f91ef..fc8e84b4c 100644 --- a/lib/compilers/llvm-mca.js +++ b/lib/compilers/llvm-mca.js @@ -22,7 +22,8 @@ // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. -const AnalysisTool = require('./analysis-tool'); +const AnalysisTool = require('./analysis-tool'), + argumentParsers = require("./argument-parsers"); // Plain compiler, which just runs the tool and returns whatever the output was class LLVMmcaTool extends AnalysisTool { @@ -39,6 +40,10 @@ class LLVMmcaTool extends AnalysisTool { if (filters.intel) options = options.concat(this.compiler.intelAsm.split(' ')); return options; } + + getArgumentParser() { + return argumentParsers.Clang; + } } |