diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-11-17 05:31:09 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-11-17 05:31:09 +0000 |
commit | 2567eec4233d58a2a0cbdcafca9420452689b395 (patch) | |
tree | 5067b972df5f095ba6b5d7cbf22ab9a0dbca4ed2 /lib/Target/ARM/ARMAddressingModes.h | |
parent | 0f6307561359fac4425a0b9e512931cf96c1ec5b (diff) |
The machine instruction no longer encodes the submode as a separate operand. We
should get the submode from the load/store multiple instruction's opcode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119461 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMAddressingModes.h')
-rw-r--r-- | lib/Target/ARM/ARMAddressingModes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMAddressingModes.h b/lib/Target/ARM/ARMAddressingModes.h index 7f68c81094..19fbf0548b 100644 --- a/lib/Target/ARM/ARMAddressingModes.h +++ b/lib/Target/ARM/ARMAddressingModes.h @@ -576,6 +576,8 @@ namespace ARM_AM { return Val; } + AMSubMode getLoadStoreMultipleSubMode(int Opcode); + } // end namespace ARM_AM } // end namespace llvm |