From: Chris Lattner Date: Tue, 4 Nov 2003 23:37:40 +0000 (+0000) Subject: Fix spello X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d5e4918fa77bf413b020735fa81fc160b43a5d0c;p=oota-llvm.git Fix spello Add negate overload git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9709 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ConstantHandling.h b/include/llvm/ConstantHandling.h index ef19cd257f8..a27283c4407 100644 --- a/include/llvm/ConstantHandling.h +++ b/include/llvm/ConstantHandling.h @@ -134,11 +134,15 @@ private: // Unary operators... inline Constant *operator~(const Constant &V) { - assert(V.getType()->isIntegral() && "Cannot invert non-intergral constant!"); + assert(V.getType()->isIntegral() && "Cannot invert non-integral constant!"); return ConstRules::get(V, V)->op_xor(&V, ConstantInt::getAllOnesValue(V.getType())); } +inline Constant *operator-(const Constant &V) { + return ConstRules::get(V, V)->sub(Constant::getNullValue(V.getType()), &V); +} + // Standard binary operators... inline Constant *operator+(const Constant &V1, const Constant &V2) { assert(V1.getType() == V2.getType() && "Constant types must be identical!"); diff --git a/lib/VMCore/ConstantFold.h b/lib/VMCore/ConstantFold.h index ef19cd257f8..a27283c4407 100644 --- a/lib/VMCore/ConstantFold.h +++ b/lib/VMCore/ConstantFold.h @@ -134,11 +134,15 @@ private: // Unary operators... inline Constant *operator~(const Constant &V) { - assert(V.getType()->isIntegral() && "Cannot invert non-intergral constant!"); + assert(V.getType()->isIntegral() && "Cannot invert non-integral constant!"); return ConstRules::get(V, V)->op_xor(&V, ConstantInt::getAllOnesValue(V.getType())); } +inline Constant *operator-(const Constant &V) { + return ConstRules::get(V, V)->sub(Constant::getNullValue(V.getType()), &V); +} + // Standard binary operators... inline Constant *operator+(const Constant &V1, const Constant &V2) { assert(V1.getType() == V2.getType() && "Constant types must be identical!"); diff --git a/lib/VMCore/ConstantFolding.h b/lib/VMCore/ConstantFolding.h index ef19cd257f8..a27283c4407 100644 --- a/lib/VMCore/ConstantFolding.h +++ b/lib/VMCore/ConstantFolding.h @@ -134,11 +134,15 @@ private: // Unary operators... inline Constant *operator~(const Constant &V) { - assert(V.getType()->isIntegral() && "Cannot invert non-intergral constant!"); + assert(V.getType()->isIntegral() && "Cannot invert non-integral constant!"); return ConstRules::get(V, V)->op_xor(&V, ConstantInt::getAllOnesValue(V.getType())); } +inline Constant *operator-(const Constant &V) { + return ConstRules::get(V, V)->sub(Constant::getNullValue(V.getType()), &V); +} + // Standard binary operators... inline Constant *operator+(const Constant &V1, const Constant &V2) { assert(V1.getType() == V2.getType() && "Constant types must be identical!");