diff options
Diffstat (limited to 'llvm/lib/VMCore/Instructions.cpp')
-rw-r--r-- | llvm/lib/VMCore/Instructions.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/llvm/lib/VMCore/Instructions.cpp b/llvm/lib/VMCore/Instructions.cpp index 9d8e0477eed..2d4ab557217 100644 --- a/llvm/lib/VMCore/Instructions.cpp +++ b/llvm/lib/VMCore/Instructions.cpp @@ -1171,9 +1171,6 @@ bool GetElementPtrInst::hasAllConstantIndices() const { return true; } -void GetElementPtrInst::setIsInBounds(bool B) { - cast<GEPOperator>(this)->setIsInBounds(B); -} //===----------------------------------------------------------------------===// // ExtractElementInst Implementation @@ -1719,18 +1716,6 @@ bool BinaryOperator::swapOperands() { return false; } -void BinaryOperator::setHasNoUnsignedWrap(bool b) { - cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b); -} - -void BinaryOperator::setHasNoSignedWrap(bool b) { - cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b); -} - -void BinaryOperator::setIsExact(bool b) { - cast<SDivOperator>(this)->setIsExact(b); -} - //===----------------------------------------------------------------------===// // CastInst Class //===----------------------------------------------------------------------===// |