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