diff options
author | Dale Johannesen <dalej@apple.com> | 2007-11-05 21:20:28 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2007-11-05 21:20:28 +0000 |
commit | 4646aa3e337aa16f53d651e4b5e60fb46f2d182f (patch) | |
tree | 3fffcf48a8c4b62f8fccc389b31d5be5e1e5cdc8 /llvm/lib/AsmParser/ParserInternals.h | |
parent | 58473ab478e030657f859740710663ec4d2b341b (diff) | |
download | bcm5719-llvm-4646aa3e337aa16f53d651e4b5e60fb46f2d182f.tar.gz bcm5719-llvm-4646aa3e337aa16f53d651e4b5e60fb46f2d182f.zip |
Make labels work in asm blocks; allow labels as
parameters. Rename ValueRefList to ParamList
in AsmParser, since its only use is for parameters.
llvm-svn: 43734
Diffstat (limited to 'llvm/lib/AsmParser/ParserInternals.h')
-rw-r--r-- | llvm/lib/AsmParser/ParserInternals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/AsmParser/ParserInternals.h b/llvm/lib/AsmParser/ParserInternals.h index 61de652c516..80a5692e11e 100644 --- a/llvm/lib/AsmParser/ParserInternals.h +++ b/llvm/lib/AsmParser/ParserInternals.h @@ -241,12 +241,12 @@ struct ArgListEntry { typedef std::vector<struct ArgListEntry> ArgListType; -struct ValueRefListEntry { +struct ParamListEntry { Value *Val; uint16_t Attrs; }; -typedef std::vector<ValueRefListEntry> ValueRefList; +typedef std::vector<ParamListEntry> ParamList; } // End llvm namespace |