diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/VMCore/ConstantsContext.h | 20 | ||||
-rw-r--r-- | llvm/lib/VMCore/Use.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/VMCore/Verifier.cpp | 2 |
4 files changed, 13 insertions, 13 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 9ed75ab1313..cb33dec6a02 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -161,7 +161,7 @@ namespace { // FIXME: can we inherit this from ConstantExpr? template <> -struct OperandTraits<ConstantPlaceHolder> : FixedNumOperandTraits<1> { +struct OperandTraits<ConstantPlaceHolder> : public FixedNumOperandTraits<1> { }; } diff --git a/llvm/lib/VMCore/ConstantsContext.h b/llvm/lib/VMCore/ConstantsContext.h index 718470aff42..d634c0b202c 100644 --- a/llvm/lib/VMCore/ConstantsContext.h +++ b/llvm/lib/VMCore/ConstantsContext.h @@ -235,54 +235,54 @@ struct CompareConstantExpr : public ConstantExpr { }; template <> -struct OperandTraits<UnaryConstantExpr> : FixedNumOperandTraits<1> { +struct OperandTraits<UnaryConstantExpr> : public FixedNumOperandTraits<1> { }; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(UnaryConstantExpr, Value) template <> -struct OperandTraits<BinaryConstantExpr> : FixedNumOperandTraits<2> { +struct OperandTraits<BinaryConstantExpr> : public FixedNumOperandTraits<2> { }; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BinaryConstantExpr, Value) template <> -struct OperandTraits<SelectConstantExpr> : FixedNumOperandTraits<3> { +struct OperandTraits<SelectConstantExpr> : public FixedNumOperandTraits<3> { }; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectConstantExpr, Value) template <> -struct OperandTraits<ExtractElementConstantExpr> : FixedNumOperandTraits<2> { +struct OperandTraits<ExtractElementConstantExpr> : public FixedNumOperandTraits<2> { }; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementConstantExpr, Value) template <> -struct OperandTraits<InsertElementConstantExpr> : FixedNumOperandTraits<3> { +struct OperandTraits<InsertElementConstantExpr> : public FixedNumOperandTraits<3> { }; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementConstantExpr, Value) template <> -struct OperandTraits<ShuffleVectorConstantExpr> : FixedNumOperandTraits<3> { +struct OperandTraits<ShuffleVectorConstantExpr> : public FixedNumOperandTraits<3> { }; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ShuffleVectorConstantExpr, Value) template <> -struct OperandTraits<ExtractValueConstantExpr> : FixedNumOperandTraits<1> { +struct OperandTraits<ExtractValueConstantExpr> : public FixedNumOperandTraits<1> { }; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractValueConstantExpr, Value) template <> -struct OperandTraits<InsertValueConstantExpr> : FixedNumOperandTraits<2> { +struct OperandTraits<InsertValueConstantExpr> : public FixedNumOperandTraits<2> { }; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertValueConstantExpr, Value) template <> -struct OperandTraits<GetElementPtrConstantExpr> : VariadicOperandTraits<1> { +struct OperandTraits<GetElementPtrConstantExpr> : public VariadicOperandTraits<1> { }; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetElementPtrConstantExpr, Value) template <> -struct OperandTraits<CompareConstantExpr> : FixedNumOperandTraits<2> { +struct OperandTraits<CompareConstantExpr> : public FixedNumOperandTraits<2> { }; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CompareConstantExpr, Value) diff --git a/llvm/lib/VMCore/Use.cpp b/llvm/lib/VMCore/Use.cpp index b25415a3d14..b7fd92f9b06 100644 --- a/llvm/lib/VMCore/Use.cpp +++ b/llvm/lib/VMCore/Use.cpp @@ -128,7 +128,7 @@ void Use::zap(Use *Start, const Use *Stop, bool del) { // AugmentedUse layout struct //===----------------------------------------------------------------------===// -struct AugmentedUse : Use { +struct AugmentedUse : public Use { PointerIntPair<User*, 1, Tag> ref; AugmentedUse(); // not implemented }; diff --git a/llvm/lib/VMCore/Verifier.cpp b/llvm/lib/VMCore/Verifier.cpp index eed4e2d7a67..39f7faac432 100644 --- a/llvm/lib/VMCore/Verifier.cpp +++ b/llvm/lib/VMCore/Verifier.cpp @@ -106,7 +106,7 @@ static const PassInfo *const PreVerifyID = &PreVer; namespace { struct VISIBILITY_HIDDEN - Verifier : public FunctionPass, InstVisitor<Verifier> { + Verifier : public FunctionPass, public InstVisitor<Verifier> { static char ID; // Pass ID, replacement for typeid bool Broken; // Is this module found to be broken? bool RealPass; // Are we not being run by a PassManager? |