summaryrefslogtreecommitdiff
path: root/lib/VMCore
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-12-19 09:15:11 +0000
committerBill Wendling <isanbard@gmail.com>2012-12-19 09:15:11 +0000
commit6424a783add6f00e5a8e5ddbe0289dfe3e271c8b (patch)
tree3c96dd267ae6abd5ee69a944b9dff0bff23435cc /lib/VMCore
parent5d122b6ec0767a543f797fafc77c1ad8e018b08b (diff)
downloadllvm-6424a783add6f00e5a8e5ddbe0289dfe3e271c8b.tar.gz
llvm-6424a783add6f00e5a8e5ddbe0289dfe3e271c8b.tar.bz2
llvm-6424a783add6f00e5a8e5ddbe0289dfe3e271c8b.tar.xz
Inline hasFunctionOnlyAttrs into its only use.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170518 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Verifier.cpp20
1 files changed, 19 insertions, 1 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp
index 17301872ea..aec44355fa 100644
--- a/lib/VMCore/Verifier.cpp
+++ b/lib/VMCore/Verifier.cpp
@@ -529,7 +529,25 @@ void Verifier::VerifyParameterAttrs(Attribute Attrs, Type *Ty,
if (!Attrs.hasAttributes())
return;
- Assert1(!Attrs.hasFunctionOnlyAttrs(),
+ Assert1(!Attrs.hasAttribute(Attribute::NoReturn) &&
+ !Attrs.hasAttribute(Attribute::NoUnwind) &&
+ !Attrs.hasAttribute(Attribute::ReadNone) &&
+ !Attrs.hasAttribute(Attribute::ReadOnly) &&
+ !Attrs.hasAttribute(Attribute::NoInline) &&
+ !Attrs.hasAttribute(Attribute::AlwaysInline) &&
+ !Attrs.hasAttribute(Attribute::OptimizeForSize) &&
+ !Attrs.hasAttribute(Attribute::StackProtect) &&
+ !Attrs.hasAttribute(Attribute::StackProtectReq) &&
+ !Attrs.hasAttribute(Attribute::NoRedZone) &&
+ !Attrs.hasAttribute(Attribute::NoImplicitFloat) &&
+ !Attrs.hasAttribute(Attribute::Naked) &&
+ !Attrs.hasAttribute(Attribute::InlineHint) &&
+ !Attrs.hasAttribute(Attribute::StackAlignment) &&
+ !Attrs.hasAttribute(Attribute::UWTable) &&
+ !Attrs.hasAttribute(Attribute::NonLazyBind) &&
+ !Attrs.hasAttribute(Attribute::ReturnsTwice) &&
+ !Attrs.hasAttribute(Attribute::AddressSafety) &&
+ !Attrs.hasAttribute(Attribute::MinSize),
"Some attributes in '" + Attrs.getAsString() +
"' only apply to functions!", V);