[llvm-commits] [llvm] r47343 - /llvm/trunk/lib/AsmParser/ParserInternals.h

Dale Johannesen dalej at apple.com
Tue Feb 19 13:40:10 PST 2008


Author: johannes
Date: Tue Feb 19 15:40:10 2008
New Revision: 47343

URL: http://llvm.org/viewvc/llvm-project?rev=47343&view=rev
Log:
Forgot a file, goes with 47342.


Modified:
    llvm/trunk/lib/AsmParser/ParserInternals.h

Modified: llvm/trunk/lib/AsmParser/ParserInternals.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/AsmParser/ParserInternals.h?rev=47343&r1=47342&r2=47343&view=diff

==============================================================================
--- llvm/trunk/lib/AsmParser/ParserInternals.h (original)
+++ llvm/trunk/lib/AsmParser/ParserInternals.h Tue Feb 19 15:40:10 2008
@@ -216,13 +216,13 @@
 
 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 @@
 
 struct ParamListEntry {
   Value *Val;
-  uint16_t Attrs;
+  ParameterAttributes Attrs;
 };
 
 typedef std::vector<ParamListEntry> ParamList;





More information about the llvm-commits mailing list