From 95c0723f9547d236d46fbe1771738dfba5d2ac35 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Mon, 11 Jul 2011 20:23:13 +0000 Subject: [PATCH] struct Init -> class Init. llvm-svn: 134917 --- utils/TableGen/CodeGenDAGPatterns.h | 2 +- utils/TableGen/Record.h | 2 +- utils/TableGen/TGParser.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/TableGen/CodeGenDAGPatterns.h b/utils/TableGen/CodeGenDAGPatterns.h index f517219ee7e..6e1eb085c0c 100644 --- a/utils/TableGen/CodeGenDAGPatterns.h +++ b/utils/TableGen/CodeGenDAGPatterns.h @@ -26,7 +26,7 @@ namespace llvm { class Record; - struct Init; + class Init; class ListInit; class DagInit; class SDNodeInfo; diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h index 52b46eaa891..60e026ad206 100644 --- a/utils/TableGen/Record.h +++ b/utils/TableGen/Record.h @@ -36,7 +36,7 @@ class DagRecTy; class RecordRecTy; // Init subclasses. -struct Init; +class Init; class UnsetInit; class BitInit; class BitsInit; diff --git a/utils/TableGen/TGParser.h b/utils/TableGen/TGParser.h index 562c36173f1..82a8a8ceeca 100644 --- a/utils/TableGen/TGParser.h +++ b/utils/TableGen/TGParser.h @@ -25,7 +25,7 @@ namespace llvm { class RecordVal; class RecordKeeper; struct RecTy; - struct Init; + class Init; struct MultiClass; struct SubClassReference; struct SubMultiClassReference;