aboutsummaryrefslogtreecommitdiff
path: root/utils/TableGen/TableGen.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-06-04 07:49:55 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-06-04 07:49:55 +0000
commitc017bc1c1e2fa0995e957f6c2ada1339832bb221 (patch)
tree23c570d3956bee2b59a4ae5de12dff7a6b8cd553 /utils/TableGen/TableGen.cpp
parentf14d33d4cb1ebbbe5cfe0071b1e2ae50a15a9890 (diff)
Drop a RecordKeeper reference that wasn't necessary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132636 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/TableGen.cpp')
-rw-r--r--utils/TableGen/TableGen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/TableGen.cpp b/utils/TableGen/TableGen.cpp
index 925b134ca4..4e4da366ae 100644
--- a/utils/TableGen/TableGen.cpp
+++ b/utils/TableGen/TableGen.cpp
@@ -380,7 +380,7 @@ int main(int argc, char **argv) {
}
case PrintSets:
{
- SetTheory Sets(&Records);
+ SetTheory Sets;
Sets.addFieldExpander("Set", "Elements");
std::vector<Record*> Recs = Records.getAllDerivedDefinitions("Set");
for (unsigned i = 0, e = Recs.size(); i != e; ++i) {