diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Operator.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Operator.h b/include/llvm/Operator.h index abd6a19..9268d98 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. |