mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-27 14:45:50 +00:00
Attempt to fix dragonegg. Use the number of slots to determine if the AttributeSet has attributes or not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173902 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cc687faba3
commit
254aed5e22
@ -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
Block a user