summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2018-04-12 15:27:01 +0000
committerSanjay Patel <spatel@rotateright.com>2018-04-12 15:27:01 +0000
commit5ace2b765a54e2fc7e546a60d83e97c36db05507 (patch)
tree4f8b32edd62a77248ec5bf14485b7271c541908f /llvm/lib/CodeGen
parent01cbd5aa686b7b50cf5b099c8a37b6ac2cfd05df (diff)
downloadbcm5719-llvm-5ace2b765a54e2fc7e546a60d83e97c36db05507.tar.gz
bcm5719-llvm-5ace2b765a54e2fc7e546a60d83e97c36db05507.zip
revert r328921 - [DAGCombine] (float)((int) f) --> ftrunc (PR36617)
This change is exposing UB in source code - as was warned/predicted. :) See D44909 for discussion. Reverting while we figure out how to fix things. llvm-svn: 329920
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index dc87e899455..42c754a5331 100644
--- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -10890,15 +10890,6 @@ SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
}
}
- // fptosi rounds towards zero, so converting from FP to integer and back is
- // the same as an 'ftrunc': sitofp (fptosi X) --> ftrunc X
- // We only do this if the target has legal ftrunc, otherwise we'd likely be
- // replacing casts with a libcall.
- if (N0.getOpcode() == ISD::FP_TO_SINT &&
- N0.getOperand(0).getValueType() == VT &&
- TLI.isOperationLegal(ISD::FTRUNC, VT))
- return DAG.getNode(ISD::FTRUNC, SDLoc(N), VT, N0.getOperand(0));
-
return SDValue();
}
@@ -10938,15 +10929,6 @@ SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
}
}
- // fptoui rounds towards zero, so converting from FP to integer and back is
- // the same as an 'ftrunc': uitofp (fptoui X) --> ftrunc X
- // We only do this if the target has legal ftrunc, otherwise we'd likely be
- // replacing casts with a libcall.
- if (N0.getOpcode() == ISD::FP_TO_UINT &&
- N0.getOperand(0).getValueType() == VT &&
- TLI.isOperationLegal(ISD::FTRUNC, VT))
- return DAG.getNode(ISD::FTRUNC, SDLoc(N), VT, N0.getOperand(0));
-
return SDValue();
}
OpenPOWER on IntegriCloud