diff --git a/include/llvm/Operator.h b/include/llvm/Operator.h index abd6a1939d7..9268d98d636 100644 --- a/include/llvm/Operator.h +++ b/include/llvm/Operator.h @@ -129,14 +129,15 @@ public: IsExact = (1 << 0) }; +private: + ~PossiblyExactOperator(); // do not implement + friend class BinaryOperator; friend class ConstantExpr; void setIsExact(bool B) { SubclassOptionalData = (SubclassOptionalData & ~IsExact) | (B * IsExact); } -private: - ~PossiblyExactOperator(); // do not implement public: /// isExact - Test whether this division is known to be exact, with /// zero remainder.