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 | eb57ea7ea2378b77bc995371c1888193b960cd03 (patch) | |
tree | b09932726b145c3501614679561c699708a4dc48 /lib/AsmParser/ParserInternals.h | |
parent | 14ac17e2dfa9cf66dec0da3618badf87163c9bf9 (diff) | |
download | external_llvm-eb57ea7ea2378b77bc995371c1888193b960cd03.tar.gz external_llvm-eb57ea7ea2378b77bc995371c1888193b960cd03.tar.bz2 external_llvm-eb57ea7ea2378b77bc995371c1888193b960cd03.zip |
Make labels work in asm blocks; allow labels as
parameters. Rename ValueRefList to ParamList
in AsmParser, since its only use is for parameters.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43734 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/ParserInternals.h')
-rw-r--r-- | lib/AsmParser/ParserInternals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/AsmParser/ParserInternals.h b/lib/AsmParser/ParserInternals.h index 61de652c51..80a5692e11 100644 --- a/lib/AsmParser/ParserInternals.h +++ b/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 |