summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/AsmParser/ParserInternals.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/AsmParser/ParserInternals.h b/lib/AsmParser/ParserInternals.h
index 8fd5031c05..298dd8c190 100644
--- a/lib/AsmParser/ParserInternals.h
+++ b/lib/AsmParser/ParserInternals.h
@@ -216,13 +216,13 @@ struct ValID {
struct TypeWithAttrs {
llvm::PATypeHolder *Ty;
- uint16_t Attrs;
+ ParameterAttributes Attrs;
};
typedef std::vector<TypeWithAttrs> TypeWithAttrsList;
struct ArgListEntry {
- uint16_t Attrs;
+ ParameterAttributes Attrs;
llvm::PATypeHolder *Ty;
std::string *Name;
};
@@ -231,7 +231,7 @@ typedef std::vector<struct ArgListEntry> ArgListType;
struct ParamListEntry {
Value *Val;
- uint16_t Attrs;
+ ParameterAttributes Attrs;
};
typedef std::vector<ParamListEntry> ParamList;