Forgot a file, goes with 47342.
authorDale Johannesen <dalej@apple.com>
Tue, 19 Feb 2008 21:40:10 +0000 (21:40 +0000)
committerDale Johannesen <dalej@apple.com>
Tue, 19 Feb 2008 21:40:10 +0000 (21:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47343 91177308-0d34-0410-b5e6-96231b3b80d8

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;