aboutsummaryrefslogtreecommitdiffstats
path: root/lib/AsmParser/ParserInternals.h
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2007-11-05 21:20:28 +0000
committerDale Johannesen <dalej@apple.com>2007-11-05 21:20:28 +0000
commiteb57ea7ea2378b77bc995371c1888193b960cd03 (patch)
treeb09932726b145c3501614679561c699708a4dc48 /lib/AsmParser/ParserInternals.h
parent14ac17e2dfa9cf66dec0da3618badf87163c9bf9 (diff)
downloadexternal_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.h4
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