[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sat Jan 15 23:28:53 PST 2005
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAGISel.cpp updated: 1.20 -> 1.21
---
Log message:
add method stub
---
Diffs of the changes: (+5 -0)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.20 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.21
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.20 Sat Jan 15 20:23:07 2005
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp Sun Jan 16 01:28:41 2005
@@ -741,6 +741,11 @@
return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
}
+SDOperand TargetLowering::LowerOperation(SDOperand Op) {
+ assert(0 && "LowerOperation not implemented for this target!");
+ abort();
+}
+
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