aboutsummaryrefslogtreecommitdiff
path: root/src/parseTools.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/parseTools.js')
-rw-r--r--src/parseTools.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parseTools.js b/src/parseTools.js
index 51988753..401a065c 100644
--- a/src/parseTools.js
+++ b/src/parseTools.js
@@ -280,6 +280,8 @@ function parseLLVMSegment(segment) {
ident: segment[0].text,
type: '?',
};
+ } else if (segment[0].text in PARSABLE_LLVM_FUNCTIONS) {
+ return parseLLVMFunctionCall([{text: '?'}].concat(segment));
} else if (segment[1].text in PARSABLE_LLVM_FUNCTIONS) {
return parseLLVMFunctionCall(segment);
} else {