diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-03-16 16:19:07 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-03-16 16:19:07 +0000 |
commit | 298a83ecfe9d1536181e350272e7fa4140b0f4d3 (patch) | |
tree | 98374d521623b442286ec36175169228296c3ae6 /llvm/lib/Target/ARM/ARMAddressingModes.h | |
parent | e52f398e3ec8565b8e0b9542c418e84c0c9599eb (diff) | |
download | bcm5719-llvm-298a83ecfe9d1536181e350272e7fa4140b0f4d3.tar.gz bcm5719-llvm-298a83ecfe9d1536181e350272e7fa4140b0f4d3.zip |
Stop using the old pre-UAL syntax for LDM/STM instruction suffixes.
This does not move entirely to UAL syntax, since the default "increment after"
suffix is empty but we still use "IA" for that.
llvm-svn: 98635
Diffstat (limited to 'llvm/lib/Target/ARM/ARMAddressingModes.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMAddressingModes.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/lib/Target/ARM/ARMAddressingModes.h b/llvm/lib/Target/ARM/ARMAddressingModes.h index ddeb1b994e8..9e086ca5c54 100644 --- a/llvm/lib/Target/ARM/ARMAddressingModes.h +++ b/llvm/lib/Target/ARM/ARMAddressingModes.h @@ -78,16 +78,6 @@ namespace ARM_AM { } } - static inline const char *getAMSubModeAltStr(AMSubMode Mode, bool isLD) { - switch (Mode) { - default: assert(0 && "Unknown addressing sub-mode!"); - case ARM_AM::ia: return isLD ? "fd" : "ea"; - case ARM_AM::ib: return isLD ? "ed" : "fa"; - case ARM_AM::da: return isLD ? "fa" : "ed"; - case ARM_AM::db: return isLD ? "ea" : "fd"; - } - } - /// rotr32 - Rotate a 32-bit unsigned value right by a specified # bits. /// static inline unsigned rotr32(unsigned Val, unsigned Amt) { |