summaryrefslogtreecommitdiff
path: root/utils/TableGen/Record.h
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2011-09-02 20:12:07 +0000
committerDavid Greene <greened@obbligato.org>2011-09-02 20:12:07 +0000
commit011dca7fac07100695dd3685bfaddbea58a468b9 (patch)
tree558d6a261450aa411c0acfd30422041fa5ce931d /utils/TableGen/Record.h
parentd5705fe50d58dd2b686b26d1683315f785246ce0 (diff)
downloadllvm-011dca7fac07100695dd3685bfaddbea58a468b9.tar.gz
llvm-011dca7fac07100695dd3685bfaddbea58a468b9.tar.bz2
llvm-011dca7fac07100695dd3685bfaddbea58a468b9.tar.xz
Make RecordVal Name an Init
Store a RecordVal's name as an Init to allow class-qualified Record members to reference Records that have Init names. We'll use this to provide more programmability in how we name defs and their associated members. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/Record.h')
-rw-r--r--utils/TableGen/Record.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h
index 8e97530637..84313e66d5 100644
--- a/utils/TableGen/Record.h
+++ b/utils/TableGen/Record.h
@@ -1337,14 +1337,15 @@ public:
//===----------------------------------------------------------------------===//
class RecordVal {
- std::string Name;
+ Init *Name;
RecTy *Ty;
unsigned Prefix;
Init *Value;
public:
+ RecordVal(Init *N, RecTy *T, unsigned P);
RecordVal(const std::string &N, RecTy *T, unsigned P);
- const std::string &getName() const { return Name; }
+ const std::string &getName() const;
unsigned getPrefix() const { return Prefix; }
RecTy *getType() const { return Ty; }