From: Chris Lattner Date: Tue, 14 Feb 2006 05:39:35 +0000 (+0000) Subject: now that libcalls don't suck, we can remove this hack X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=06a248c9b398049d41cf6dd1a3f9eecc75603401;p=oota-llvm.git now that libcalls don't suck, we can remove this hack git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26164 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 96c1b312c02..979f2bea132 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -1098,9 +1098,7 @@ void SelectionDAGLowering::visitCall(CallInst &I) { } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) { if (I.getNumOperands() == 2 && // Basic sanity checks. I.getOperand(1)->getType()->isFloatingPoint() && - I.getType() == I.getOperand(1)->getType() && - TLI.isOperationLegal(ISD::FSIN, - TLI.getValueType(I.getOperand(1)->getType()))) { + I.getType() == I.getOperand(1)->getType()) { SDOperand Tmp = getValue(I.getOperand(1)); setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp)); return; @@ -1108,9 +1106,7 @@ void SelectionDAGLowering::visitCall(CallInst &I) { } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) { if (I.getNumOperands() == 2 && // Basic sanity checks. I.getOperand(1)->getType()->isFloatingPoint() && - I.getType() == I.getOperand(1)->getType() && - TLI.isOperationLegal(ISD::FCOS, - TLI.getValueType(I.getOperand(1)->getType()))) { + I.getType() == I.getOperand(1)->getType()) { SDOperand Tmp = getValue(I.getOperand(1)); setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp)); return;