diff options
author | Craig Topper <craig.topper@gmail.com> | 2017-05-27 17:36:47 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2017-05-27 17:36:47 +0000 |
commit | 0836449337cc9ee563fc8bf9b5f7c30bfcca81f8 (patch) | |
tree | fdeb40834e2eaf2ea81f48bc23535c42f30cd30d | |
parent | 1e55db30d520694104c21f9c337276865d46e772 (diff) | |
download | bcm5719-llvm-0836449337cc9ee563fc8bf9b5f7c30bfcca81f8.tar.gz bcm5719-llvm-0836449337cc9ee563fc8bf9b5f7c30bfcca81f8.zip |
[TableGen] Use the correct type for the first template for the ListInit TrailingObjects.
llvm-svn: 304076
-rw-r--r-- | llvm/include/llvm/TableGen/Record.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/TableGen/Record.h b/llvm/include/llvm/TableGen/Record.h index fef5bf30456..ced21c2efb2 100644 --- a/llvm/include/llvm/TableGen/Record.h +++ b/llvm/include/llvm/TableGen/Record.h @@ -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: |