1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00
Aaron Ballman 2016-03-14 20:03:15 +00:00
parent 8cda7bef4f
commit c67a26e6d8

View File

@ -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: