Temporary work around for a libcall insertion bug: If a target doesn't

support FSIN/FCOS nodes, do not lower sin/cos to them.

llvm-svn: 25425
This commit is contained in:
Chris Lattner 2006-01-18 21:50:14 +00:00
parent f7623e2065
commit 9bc0f6cd90

View File

@ -1070,7 +1070,9 @@ 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()) {
I.getType() == I.getOperand(1)->getType() &&
TLI.isOperationLegal(ISD::FSIN,
TLI.getValueType(I.getOperand(1)->getType()))) {
SDOperand Tmp = getValue(I.getOperand(1));
setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
return;
@ -1078,7 +1080,9 @@ 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()) {
I.getType() == I.getOperand(1)->getType() &&
TLI.isOperationLegal(ISD::FCOS,
TLI.getValueType(I.getOperand(1)->getType()))) {
SDOperand Tmp = getValue(I.getOperand(1));
setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
return;