1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Fix spello

Add negate overload

llvm-svn: 9709
This commit is contained in:
Chris Lattner 2003-11-04 23:37:40 +00:00
parent a309338bd4
commit 97da28f949

View File

@ -134,11 +134,15 @@ private:
// Unary operators... // Unary operators...
inline Constant *operator~(const Constant &V) { 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, return ConstRules::get(V, V)->op_xor(&V,
ConstantInt::getAllOnesValue(V.getType())); ConstantInt::getAllOnesValue(V.getType()));
} }
inline Constant *operator-(const Constant &V) {
return ConstRules::get(V, V)->sub(Constant::getNullValue(V.getType()), &V);
}
// Standard binary operators... // Standard binary operators...
inline Constant *operator+(const Constant &V1, const Constant &V2) { inline Constant *operator+(const Constant &V1, const Constant &V2) {
assert(V1.getType() == V2.getType() && "Constant types must be identical!"); assert(V1.getType() == V2.getType() && "Constant types must be identical!");