[llvm-commits] CVS: llvm/lib/Target/ARM/ARMRegisterInfo.td
Chris Lattner
lattner at cs.uiuc.edu
Thu Aug 17 15:00:32 PDT 2006
Changes in directory llvm/lib/Target/ARM:
ARMRegisterInfo.td updated: 1.2 -> 1.3
---
Log message:
Constify some methods. Patch provided by Anton Vayvod, thanks!
---
Diffs of the changes: (+2 -2)
ARMRegisterInfo.td | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/Target/ARM/ARMRegisterInfo.td
diff -u llvm/lib/Target/ARM/ARMRegisterInfo.td:1.2 llvm/lib/Target/ARM/ARMRegisterInfo.td:1.3
--- llvm/lib/Target/ARM/ARMRegisterInfo.td:1.2 Sat Jun 17 19:08:07 2006
+++ llvm/lib/Target/ARM/ARMRegisterInfo.td Thu Aug 17 17:00:07 2006
@@ -45,11 +45,11 @@
R7, R8, R9, R10, R11, R12,
R13, R14, R15]> {
let MethodProtos = [{
- iterator allocation_order_end(MachineFunction &MF) const;
+ iterator allocation_order_end(const MachineFunction &MF) const;
}];
let MethodBodies = [{
IntRegsClass::iterator
- IntRegsClass::allocation_order_end(MachineFunction &MF) const {
+ IntRegsClass::allocation_order_end(const MachineFunction &MF) const {
// r15 == Program Counter
// r14 == Link Register
// r13 == Stack Pointer
More information about the llvm-commits
mailing list