diff options
Diffstat (limited to 'llvm/lib/AsmParser/LLParser.h')
-rw-r--r-- | llvm/lib/AsmParser/LLParser.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/AsmParser/LLParser.h b/llvm/lib/AsmParser/LLParser.h index 3a794142172..f3e1cc85c8b 100644 --- a/llvm/lib/AsmParser/LLParser.h +++ b/llvm/lib/AsmParser/LLParser.h @@ -395,8 +395,8 @@ namespace llvm { struct ParamInfo { LocTy Loc; Value *V; - AttributeList Attrs; - ParamInfo(LocTy loc, Value *v, AttributeList attrs) + AttributeSetNode *Attrs; + ParamInfo(LocTy loc, Value *v, AttributeSetNode *attrs) : Loc(loc), V(v), Attrs(attrs) {} }; bool ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList, @@ -448,9 +448,9 @@ namespace llvm { struct ArgInfo { LocTy Loc; Type *Ty; - AttributeList Attrs; + AttributeSetNode *Attrs; std::string Name; - ArgInfo(LocTy L, Type *ty, AttributeList Attr, const std::string &N) + ArgInfo(LocTy L, Type *ty, AttributeSetNode *Attr, const std::string &N) : Loc(L), Ty(ty), Attrs(Attr), Name(N) {} }; bool ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList, bool &isVarArg); |