Add a clear() method to PriorityQueue.
[oota-llvm.git] / lib / AsmParser / ParserInternals.h
index 8fd5031c05a42141610dbe7df7500f78d02dad04..298dd8c19023fbeda71884efd31052c0af1b21cd 100644 (file)
@@ -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;