summaryrefslogtreecommitdiff
path: root/lib/AsmParser
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-12-30 13:50:49 +0000
committerBill Wendling <isanbard@gmail.com>2012-12-30 13:50:49 +0000
commit94e94b350652d3a71993bbc7d44afbe3b304605e (patch)
tree609b531981802fca42e99c872a3191b1219634c8 /lib/AsmParser
parent8b62abdd7b9c8fc5d78dad86093f4afdfeba949d (diff)
downloadllvm-94e94b350652d3a71993bbc7d44afbe3b304605e.tar.gz
llvm-94e94b350652d3a71993bbc7d44afbe3b304605e.tar.bz2
llvm-94e94b350652d3a71993bbc7d44afbe3b304605e.tar.xz
Use the predicate methods off of AttributeSet instead of Attribute.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171257 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser')
-rw-r--r--lib/AsmParser/LLParser.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp
index c45ad0a083..ffa0ace596 100644
--- a/lib/AsmParser/LLParser.cpp
+++ b/lib/AsmParser/LLParser.cpp
@@ -2834,8 +2834,7 @@ bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
AttributeSet PAL = AttributeSet::get(Context, Attrs);
- if (PAL.getParamAttributes(1).hasAttribute(Attribute::StructRet) &&
- !RetType->isVoidTy())
+ if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
return Error(RetTypeLoc, "functions with 'sret' argument must return void");
FunctionType *FT =