[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
Nate Begeman
natebegeman at mac.com
Mon Jan 29 14:59:21 PST 2007
Changes in directory llvm/lib/Target/PowerPC:
PPCISelLowering.cpp updated: 1.248 -> 1.249
---
Log message:
Finish off bug 680: http://llvm.org/PR680 , allowing targets to custom lower frame and return
address nodes.
---
Diffs of the changes: (+4 -0)
PPCISelLowering.cpp | 4 ++++
1 files changed, 4 insertions(+)
Index: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.248 llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.249
--- llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.248 Sun Jan 28 07:31:35 2007
+++ llvm/lib/Target/PowerPC/PPCISelLowering.cpp Mon Jan 29 16:58:52 2007
@@ -2634,6 +2634,10 @@
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();
}
More information about the llvm-commits
mailing list