diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2016-03-14 20:03:15 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2016-03-14 20:03:15 +0000 |
commit | be57dfa75df8c6a33c981adc2d8d82d21b44f40d (patch) | |
tree | 54cdc9f1c0f50947161d5163a2303b9699480a8d | |
parent | 1a57daf314055cd16dd009fef9862521e51b7835 (diff) | |
download | bcm5719-llvm-be57dfa75df8c6a33c981adc2d8d82d21b44f40d.tar.gz bcm5719-llvm-be57dfa75df8c6a33c981adc2d8d82d21b44f40d.zip |
Reverting r263474; it turns out there are uses of the public interface, but MSVC wasn't caring about them.
http://lab.llvm.org:8080/green//job/clang-stage1-cmake-RA-incremental_build/21475/consoleFull#-45876453249ba4694-19c4-4d7e-bec5-911270d8a58c
http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast/builds/8879
llvm-svn: 263475
-rw-r--r-- | llvm/include/llvm/TableGen/Record.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/TableGen/Record.h b/llvm/include/llvm/TableGen/Record.h index 031cf0bc148..9140b3a9c5e 100644 --- a/llvm/include/llvm/TableGen/Record.h +++ b/llvm/include/llvm/TableGen/Record.h @@ -458,7 +458,7 @@ public: /// It contains a vector of bits, whose size is determined by the type. /// class BitsInit final : public TypedInit, public FoldingSetNode, - private TrailingObjects<BitsInit, Init *> { + public TrailingObjects<BitsInit, Init *> { unsigned NumBits; BitsInit(unsigned N) @@ -590,7 +590,7 @@ public: /// ListInit - [AL, AH, CL] - Represent a list of defs /// class ListInit final : public TypedInit, public FoldingSetNode, - private TrailingObjects<BitsInit, Init *> { + public TrailingObjects<BitsInit, Init *> { unsigned NumValues; public: |