Use a literal to define ineg instead of immzero
authorChris Lattner <sabre@nondot.org>
Thu, 20 Oct 2005 23:30:37 +0000 (23:30 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 20 Oct 2005 23:30:37 +0000 (23:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23851 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/TargetSelectionDAG.td

index a1c3f6f245c3dd40cc6a353cbc60e436b69fbe0b..f27fc90b18c7b0b1a0fc65d8b5aa1dcbe7644ec8 100644 (file)
@@ -208,7 +208,6 @@ class PatLeaf<dag frag, code pred = [{}], SDNodeXForm xform = NOOP_SDNodeXForm>
 // Leaf fragments.
 
 def immAllOnes : PatLeaf<(imm), [{ return N->isAllOnesValue(); }]>;
-def immZero    : PatLeaf<(imm), [{ return N->isNullValue();    }]>;
 
 def vtInt      : PatLeaf<(vt),  [{ return MVT::isInteger(N->getVT()); }]>;
 def vtFP       : PatLeaf<(vt),  [{ return MVT::isFloatingPoint(N->getVT()); }]>;
@@ -216,7 +215,7 @@ def vtFP       : PatLeaf<(vt),  [{ return MVT::isFloatingPoint(N->getVT()); }]>;
 // Other helper fragments.
 
 def not  : PatFrag<(ops node:$in), (xor node:$in, immAllOnes)>;
-def ineg : PatFrag<(ops node:$in), (sub immZero, node:$in)>;
+def ineg : PatFrag<(ops node:$in), (sub 0, node:$in)>;
 
 //===----------------------------------------------------------------------===//
 // Selection DAG Pattern Support.