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 | b100f91754fb3fe5802fa5e7cea5de5112b12dd8 (patch) | |
tree | e3f48a93cffe8776c5f4176aa9b239e37bb16e4c /llvm/lib/Target/ARM/ARMAddressingModes.h | |
parent | 9898ac97fdc6e9291cba424c2cb02db577e384c6 (diff) | |
download | bcm5719-llvm-b100f91754fb3fe5802fa5e7cea5de5112b12dd8.tar.gz bcm5719-llvm-b100f91754fb3fe5802fa5e7cea5de5112b12dd8.zip |
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.
llvm-svn: 119461
Diffstat (limited to 'llvm/lib/Target/ARM/ARMAddressingModes.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMAddressingModes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMAddressingModes.h b/llvm/lib/Target/ARM/ARMAddressingModes.h index 7f68c810943..19fbf0548b0 100644 --- a/llvm/lib/Target/ARM/ARMAddressingModes.h +++ b/llvm/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 |