aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-03-16 17:46:45 +0000
committerBob Wilson <bob.wilson@apple.com>2010-03-16 17:46:45 +0000
commitdfa5da942162f3e44b08d27e4df9e7d94f17e13d (patch)
treedc6842724fef60361d0c6fe7ab81daba50aee999 /lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
parent2830d1937d97bce9d0cb2538d8582638a45fa5b7 (diff)
downloadexternal_llvm-dfa5da942162f3e44b08d27e4df9e7d94f17e13d.zip
external_llvm-dfa5da942162f3e44b08d27e4df9e7d94f17e13d.tar.gz
external_llvm-dfa5da942162f3e44b08d27e4df9e7d94f17e13d.tar.bz2
Remove the writeback flag from ARM's address mode 4. Now that we have separate
instructions for ld/st with writeback, the flag is completely redundant. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98643 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp')
-rw-r--r--lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
index 7950adb..66abf99 100644
--- a/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
+++ b/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
@@ -232,8 +232,6 @@ void ARMInstPrinter::printAddrMode4Operand(const MCInst *MI, unsigned OpNum,
O << ".w";
} else {
printOperand(MI, OpNum);
- if (ARM_AM::getAM4WBFlag(MO2.getImm()))
- O << "!";
}
}