diff options
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 9 | 
1 files changed, 1 insertions, 8 deletions
| diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index bfceecb7aaf..f041905bb32 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -266,14 +266,7 @@ public:        } else if (isa<ConstantPointerNull>(C)) {          return N = DAG.getConstant(0, TLI.getPointerTy());        } else if (isa<UndefValue>(C)) { -	/// FIXME: Implement UNDEFVALUE better. -        if (MVT::isInteger(VT)) -          return N = DAG.getConstant(0, VT); -        else if (MVT::isFloatingPoint(VT)) -          return N = DAG.getConstantFP(0, VT); -        else -          assert(0 && "Unknown value type!"); - +        return N = DAG.getNode(ISD::UNDEF, VT);        } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {          return N = DAG.getConstantFP(CFP->getValue(), VT);        } else { | 

