diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-12 07:00:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-12 07:00:44 +0000 |
commit | 153587e555e5b42f488ff8c3f7be84f1cb1223a9 (patch) | |
tree | a60aeac0f0a0971135f46998c0b212582e87c72a /llvm/lib/CodeGen | |
parent | 8a5ad8468a9951217cef36380504a235f0f11ddb (diff) | |
download | bcm5719-llvm-153587e555e5b42f488ff8c3f7be84f1cb1223a9.tar.gz bcm5719-llvm-153587e555e5b42f488ff8c3f7be84f1cb1223a9.zip |
Oops, don't do this after we figure out where to insert the call chains.
llvm-svn: 21890
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 5cc148a84f5..f6365a1cf86 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -2153,6 +2153,12 @@ ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) { return DAG.getNode(ISD::ADD, DestTy, SignedConv, FudgeInReg); } + // Expand the source, then glue it back together for the call. We must expand + // the source in case it is shared (this pass of legalize must traverse it). + SDOperand SrcLo, SrcHi; + ExpandOp(Source, SrcLo, SrcHi); + Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi); + SDNode *OutChain = 0; SDOperand InChain = FindInputOutputChains(Source.Val, OutChain, DAG.getEntryNode()); @@ -2169,12 +2175,6 @@ ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) { TargetLowering::ArgListTy Args; const Type *ArgTy = MVT::getTypeForValueType(Source.getValueType()); - // Expand the source, then glue it back together for the call. We must expand - // the source in case it is shared (this pass of legalize must traverse it). - SDOperand SrcLo, SrcHi; - ExpandOp(Source, SrcLo, SrcHi); - Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi); - Args.push_back(std::make_pair(Source, ArgTy)); // We don't care about token chains for libcalls. We just use the entry |