summaryrefslogtreecommitdiffstats
path: root/llvm/lib/IR/Verifier.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2015-03-13 06:41:26 +0000
committerOwen Anderson <resistor@mac.com>2015-03-13 06:41:26 +0000
commit08f46e1de67f333b10f4e299b4eccccc84ca6697 (patch)
tree8aa63682991b770921bc6ea4c06b9507ecfa47e1 /llvm/lib/IR/Verifier.cpp
parent04183242b34d660cc5f265c329eca2fcb4d781e9 (diff)
downloadbcm5719-llvm-08f46e1de67f333b10f4e299b4eccccc84ca6697.tar.gz
bcm5719-llvm-08f46e1de67f333b10f4e299b4eccccc84ca6697.zip
Fix an infinite recursion in the verifier caused by calling isSized on a recursive type.
llvm-svn: 232143
Diffstat (limited to 'llvm/lib/IR/Verifier.cpp')
-rw-r--r--llvm/lib/IR/Verifier.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp
index eaad5fb1b98..9e77c32ee4b 100644
--- a/llvm/lib/IR/Verifier.cpp
+++ b/llvm/lib/IR/Verifier.cpp
@@ -1014,7 +1014,8 @@ void Verifier::VerifyParameterAttrs(AttributeSet Attrs, unsigned Idx, Type *Ty,
V);
if (PointerType *PTy = dyn_cast<PointerType>(Ty)) {
- if (!PTy->getElementType()->isSized()) {
+ SmallPtrSet<const Type*, 4> Visited;
+ if (!PTy->getElementType()->isSized(&Visited)) {
Assert(!Attrs.hasAttribute(Idx, Attribute::ByVal) &&
!Attrs.hasAttribute(Idx, Attribute::InAlloca),
"Attributes 'byval' and 'inalloca' do not support unsized types!",
OpenPOWER on IntegriCloud