diff options
author | Duncan Sands <baldrick@free.fr> | 2008-07-04 11:47:58 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2008-07-04 11:47:58 +0000 |
commit | 93e180342a5f6b3af380b7af6bc5f2116d27b858 (patch) | |
tree | d1a346b8ec45d03aa9e4ef13618ca56f6161f52c /llvm/lib/Target/PowerPC/PPCISelLowering.cpp | |
parent | 1e8b6087511c228990d1408833a2354969df4b9c (diff) | |
download | bcm5719-llvm-93e180342a5f6b3af380b7af6bc5f2116d27b858.tar.gz bcm5719-llvm-93e180342a5f6b3af380b7af6bc5f2116d27b858.zip |
Rather than having a different custom legalization
hook for each way in which a result type can be
legalized (promotion, expansion, softening etc),
just use one: ReplaceNodeResults, which returns
a node with exactly the same result types as the
node passed to it, but presumably with a bunch of
custom code behind the scenes. No change if the
new LegalizeTypes infrastructure is not turned on.
llvm-svn: 53137
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index 4b2267d8122..d44dc5dcd4f 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -3964,7 +3964,7 @@ SDOperand PPCTargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) { return SDOperand(); } -SDNode *PPCTargetLowering::ExpandOperationResult(SDNode *N, SelectionDAG &DAG) { +SDNode *PPCTargetLowering::ReplaceNodeResults(SDNode *N, SelectionDAG &DAG) { switch (N->getOpcode()) { default: assert(0 && "Wasn't expecting to be able to lower this!"); case ISD::FP_TO_SINT: return LowerFP_TO_SINT(SDOperand(N, 0), DAG).Val; |