[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri Jan 27 19:37:15 PST 2006
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAGISel.cpp updated: 1.140 -> 1.141
---
Log message:
add a new callback
---
Diffs of the changes: (+7 -0)
SelectionDAGISel.cpp | 7 +++++++
1 files changed, 7 insertions(+)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.140 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.141
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.140 Fri Jan 27 21:14:31 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp Fri Jan 27 21:37:03 2006
@@ -1288,6 +1288,13 @@
return SDOperand();
}
+void TargetLowering::CustomExpandOperation(SDOperand Op, SDOperand &Lo,
+ SDOperand &Hi, SelectionDAG &DAG) {
+ assert(0 && "CustomExpandOperation not implemented for this target!");
+ abort();
+ return SDOperand();
+}
+
void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
std::pair<SDOperand,SDOperand> Result =
More information about the llvm-commits
mailing list