diff options
author | Dale Johannesen <dalej@apple.com> | 2008-02-19 21:40:10 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-02-19 21:40:10 +0000 |
commit | 387d7795b2a0e203a372e2c4cf71d9fceb4138f6 (patch) | |
tree | b448f0a82154a35a8de39c71ee79300b2c8d2eaf | |
parent | f4666f59fc17a4e5c4764e56220d1c5888fd8f58 (diff) | |
download | external_llvm-387d7795b2a0e203a372e2c4cf71d9fceb4138f6.zip external_llvm-387d7795b2a0e203a372e2c4cf71d9fceb4138f6.tar.gz external_llvm-387d7795b2a0e203a372e2c4cf71d9fceb4138f6.tar.bz2 |
Forgot a file, goes with 47342.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47343 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/AsmParser/ParserInternals.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/AsmParser/ParserInternals.h b/lib/AsmParser/ParserInternals.h index 8fd5031..298dd8c 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; |