[TableGen] Use the correct type for the first template for the ListInit TrailingObjects.

llvm-svn: 304076
This commit is contained in:
Craig Topper 2017-05-27 17:36:47 +00:00
parent 1e55db30d5
commit 0836449337
1 changed files with 1 additions and 1 deletions

View File

@ -671,7 +671,7 @@ public:
/// [AL, AH, CL] - Represent a list of defs
///
class ListInit final : public TypedInit, public FoldingSetNode,
public TrailingObjects<BitsInit, Init *> {
public TrailingObjects<ListInit, Init *> {
unsigned NumValues;
public: