mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 15:48:38 +00:00
Call Record Initializer
Call the common Record initializer code from constructors. llvm-svn: 142509
This commit is contained in:
parent
76a2654db8
commit
68668c01b0
@ -1403,9 +1403,11 @@ public:
|
||||
explicit Record(const std::string &N, SMLoc loc, RecordKeeper &records) :
|
||||
ID(LastID++), Name(StringInit::get(N)), Loc(loc), TrackedRecords(records),
|
||||
TheInit(0) {
|
||||
init();
|
||||
}
|
||||
explicit Record(Init *N, SMLoc loc, RecordKeeper &records) :
|
||||
ID(LastID++), Name(N), Loc(loc), TrackedRecords(records), TheInit(0) {
|
||||
init();
|
||||
}
|
||||
~Record() {}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user