summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMISelLowering.cpp
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2007-01-29 22:58:52 +0000
committerNate Begeman <natebegeman@mac.com>2007-01-29 22:58:52 +0000
commitbcc5f36765e8111c13873a0c0dc874c92385d808 (patch)
treeb2c127b9651f73e318947eb3d87e55466d35668a /lib/Target/ARM/ARMISelLowering.cpp
parent1f259e9d7aa346861785c4a2a7e3220fec113706 (diff)
downloadllvm-bcc5f36765e8111c13873a0c0dc874c92385d808.tar.gz
llvm-bcc5f36765e8111c13873a0c0dc874c92385d808.tar.bz2
llvm-bcc5f36765e8111c13873a0c0dc874c92385d808.tar.xz
Finish off bug 680, allowing targets to custom lower frame and return
address nodes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33636 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMISelLowering.cpp')
-rw-r--r--lib/Target/ARM/ARMISelLowering.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp
index e2268d212b..55b22aae39 100644
--- a/lib/Target/ARM/ARMISelLowering.cpp
+++ b/lib/Target/ARM/ARMISelLowering.cpp
@@ -1130,7 +1130,10 @@ SDOperand ARMTargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
case ISD::SRA: return LowerSRx(Op, DAG, Subtarget);
case ISD::FORMAL_ARGUMENTS:
return LowerFORMAL_ARGUMENTS(Op, DAG);
+ case ISD::RETURNADDR: break;
+ case ISD::FRAMEADDR: break;
}
+ return SDOperand();
}
//===----------------------------------------------------------------------===//