forked from OSchip/llvm-project
Attempt to fix dragonegg. Use the number of slots to determine if the AttributeSet has attributes or not.
llvm-svn: 173902
This commit is contained in:
parent
513bd8a73c
commit
0aed1135fc
|
@ -797,7 +797,7 @@ void Verifier::VerifyFunctionAttrs(FunctionType *FT,
|
|||
}
|
||||
|
||||
static bool VerifyAttributeCount(const AttributeSet &Attrs, unsigned Params) {
|
||||
if (Attrs.isEmpty())
|
||||
if (Attrs.getNumSlots() == 0)
|
||||
return true;
|
||||
|
||||
unsigned LastSlot = Attrs.getNumSlots() - 1;
|
||||
|
|
Loading…
Reference in New Issue