aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-01-30 06:54:41 +0000
committerBill Wendling <isanbard@gmail.com>2013-01-30 06:54:41 +0000
commit254aed5e22a36effb1e1b9e8d03f8cd5e9bb7586 (patch)
treea92dca1392fed6d01a48a35c0447195b51ea653f /lib
parentcc687faba373e6aa3cefe594bd9f3212e18617eb (diff)
downloadexternal_llvm-254aed5e22a36effb1e1b9e8d03f8cd5e9bb7586.zip
external_llvm-254aed5e22a36effb1e1b9e8d03f8cd5e9bb7586.tar.gz
external_llvm-254aed5e22a36effb1e1b9e8d03f8cd5e9bb7586.tar.bz2
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
Diffstat (limited to 'lib')
-rw-r--r--lib/IR/Verifier.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IR/Verifier.cpp b/lib/IR/Verifier.cpp
index 39f95fa..2d69493 100644
--- a/lib/IR/Verifier.cpp
+++ b/lib/IR/Verifier.cpp
@@ -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;