Forgot a file, goes with 47342.

llvm-svn: 47343
This commit is contained in:
Dale Johannesen 2008-02-19 21:40:10 +00:00
parent 89268bc6e2
commit 151e50bf0c
1 changed files with 3 additions and 3 deletions

View 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;