diff options
Diffstat (limited to 'src/parseTools.js')
-rw-r--r-- | src/parseTools.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parseTools.js b/src/parseTools.js index 45cee958..635fa411 100644 --- a/src/parseTools.js +++ b/src/parseTools.js @@ -1464,6 +1464,8 @@ function finalizeLLVMParameter(param, noIndexizeFunctions) { return finalizeBlockAddress(param); } else if (param.intertype === 'type') { return param.ident; // we don't really want the type here + } else if (param.intertype == 'mathop') { + return processMathop(param); } else { throw 'invalid llvm parameter: ' + param.intertype; } |