summaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/ARMAddressingModes.h
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-03-16 16:19:07 +0000
committerBob Wilson <bob.wilson@apple.com>2010-03-16 16:19:07 +0000
commitea7f22c31d0d12923eaab6840322431cc0222ae9 (patch)
tree419003df8607bfd3f447154b509e4a90636cbf1c /lib/Target/ARM/ARMAddressingModes.h
parentabf657f7e6dbce1bf8e02fce2d602f33d5fc5c2a (diff)
downloadexternal_llvm-ea7f22c31d0d12923eaab6840322431cc0222ae9.zip
external_llvm-ea7f22c31d0d12923eaab6840322431cc0222ae9.tar.gz
external_llvm-ea7f22c31d0d12923eaab6840322431cc0222ae9.tar.bz2
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98635 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMAddressingModes.h')
-rw-r--r--lib/Target/ARM/ARMAddressingModes.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/Target/ARM/ARMAddressingModes.h b/lib/Target/ARM/ARMAddressingModes.h
index ddeb1b9..9e086ca 100644
--- a/lib/Target/ARM/ARMAddressingModes.h
+++ b/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) {