aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-16 07:28:41 +0000
committerChris Lattner <sabre@nondot.org>2005-01-16 07:28:41 +0000
commit171453a284b097f1ee89fb87ff495c3a6c7b6297 (patch)
treec9f5aec7b3f3b16eba00241f94f9d734b0002ee8 /lib/CodeGen
parent4b7899343eb492b70868fc73450b708834a3cf99 (diff)
add method stub
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19612 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index aab9d46857..f747b35cf8 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -741,6 +741,11 @@ TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
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 =