diff options
| author | Dale Johannesen <dalej@apple.com> | 2007-10-19 00:59:18 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2007-10-19 00:59:18 +0000 |
| commit | 10432e5a674c35cea7ded261d781bc450c02afa2 (patch) | |
| tree | 505d8830f959fcae48c6f2fb925c44f6e71c3aff /llvm/lib/CodeGen/SelectionDAG | |
| parent | 74a1cfaf218cc248b716cfa1251b7d3e6c1711c1 (diff) | |
| download | bcm5719-llvm-10432e5a674c35cea7ded261d781bc450c02afa2.tar.gz bcm5719-llvm-10432e5a674c35cea7ded261d781bc450c02afa2.zip | |
More ppcf128 issues (maybe the last)?
llvm-svn: 43160
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 5b5a70edb6e..12add047e48 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -3493,7 +3493,7 @@ SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) { return DAG.getNode(ISD::FP_EXTEND, VT, N0); // fold (fpext (load x)) -> (fpext (fpround (extload x))) - if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() && + if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() && VT != MVT::ppcf128 && (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) { LoadSDNode *LN0 = cast<LoadSDNode>(N0); SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(), |

