Delete an unused function.
authorDan Gohman <gohman@apple.com>
Tue, 23 Sep 2008 18:26:47 +0000 (18:26 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 23 Sep 2008 18:26:47 +0000 (18:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56495 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelDAGToDAG.cpp

index 8c5cb22deaae9be3f78520ee895f7b3c4d239b91..f9a682894c79462aee792f90bcc991fc868df362 100644 (file)
@@ -1057,16 +1057,6 @@ bool X86DAGToDAGISel::SelectAddr(SDValue Op, SDValue N, SDValue &Base,
   return true;
 }
 
-/// isZeroNode - Returns true if Elt is a constant zero or a floating point
-/// constant +0.0.
-static inline bool isZeroNode(SDValue Elt) {
-  return ((isa<ConstantSDNode>(Elt) &&
-  cast<ConstantSDNode>(Elt)->getZExtValue() == 0) ||
-  (isa<ConstantFPSDNode>(Elt) &&
-  cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
-}
-
-
 /// SelectScalarSSELoad - Match a scalar SSE load.  In particular, we want to
 /// match a load whose top elements are either undef or zeros.  The load flavor
 /// is derived from the type of N, which is either v4f32 or v2f64.