summaryrefslogtreecommitdiff
path: root/utils/TableGen/Record.h
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2005-10-28 21:46:31 +0000
committerJim Laskey <jlaskey@mac.com>2005-10-28 21:46:31 +0000
commitfd306bfdd294772560b3a1cf762bc1081f66e6ba (patch)
tree5d1eaee66efd2e565fbfab9f9182694362ab8c1c /utils/TableGen/Record.h
parented048c067dc7bf342b2947b4de39e915dcbd2bf0 (diff)
downloadllvm-fd306bfdd294772560b3a1cf762bc1081f66e6ba.tar.gz
llvm-fd306bfdd294772560b3a1cf762bc1081f66e6ba.tar.bz2
llvm-fd306bfdd294772560b3a1cf762bc1081f66e6ba.tar.xz
Added method to return a vector of records for a ListInit of Def field. This
simplifies using list of records. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24069 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/Record.h')
-rw-r--r--utils/TableGen/Record.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h
index edd875afce..ecd6d7020a 100644
--- a/utils/TableGen/Record.h
+++ b/utils/TableGen/Record.h
@@ -1000,6 +1000,12 @@ public:
///
ListInit *getValueAsListInit(const std::string &FieldName) const;
+ /// getValueAsListDef - This method looks up the specified field and returns
+ /// its value as a vector of records, throwing an exception if the field does
+ /// not exist or if the value is not the right type.
+ ///
+ std::vector<Record*> getValueAsListDef(const std::string &FieldName) const;
+
/// getValueAsDef - This method looks up the specified field and returns its
/// value as a Record, throwing an exception if the field does not exist or if
/// the value is not the right type.