diff options
| author | Nate Begeman <natebegeman@mac.com> | 2007-01-29 22:58:52 +0000 |
|---|---|---|
| committer | Nate Begeman <natebegeman@mac.com> | 2007-01-29 22:58:52 +0000 |
| commit | eda5997cc8e2ddaea20bc5cbb211622294320af7 (patch) | |
| tree | 3c2896c81c262ed0f94ed51c8fefaf5c6423a0db /llvm/lib/Target/PowerPC/PPCISelLowering.cpp | |
| parent | e3b09fbbb04af77f8d9cde3e258fd3e34b83fe6e (diff) | |
| download | bcm5719-llvm-eda5997cc8e2ddaea20bc5cbb211622294320af7.tar.gz bcm5719-llvm-eda5997cc8e2ddaea20bc5cbb211622294320af7.zip | |
Finish off bug 680, allowing targets to custom lower frame and return
address nodes.
llvm-svn: 33636
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCISelLowering.cpp')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index 041ff36af38..88815a7c5ad 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -2634,6 +2634,10 @@ SDOperand PPCTargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) { case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG); case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG); case ISD::MUL: return LowerMUL(Op, DAG); + + // Frame & Return address. Currently unimplemented + case ISD::RETURNADDR: break; + case ISD::FRAMEADDR: break; } return SDOperand(); } |

