aboutsummaryrefslogtreecommitdiff
path: root/lib/RSInvokeHelperPass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/RSInvokeHelperPass.cpp')
-rw-r--r--lib/RSInvokeHelperPass.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/RSInvokeHelperPass.cpp b/lib/RSInvokeHelperPass.cpp
index 99316ce..a22909f 100644
--- a/lib/RSInvokeHelperPass.cpp
+++ b/lib/RSInvokeHelperPass.cpp
@@ -177,6 +177,10 @@ public:
continue;
llvm::StructType *argStructType = llvm::dyn_cast<llvm::StructType>(argType->getPointerElementType());
+ if (!argStructType) {
+ // Abort when dynamic_cast failed?
+ continue;
+ }
for (unsigned int i = 0; i < argStructType->getNumElements(); i++) {
llvm::Type *currentType = argStructType->getElementType(i);