forked from OSchip/llvm-project
c313220b18
According to the ARM reference manual, constant offsets are mandatory for pre-indexed addressing modes. The MC disassembler was not obeying this when the offset is 0. It was producing instructions like: str r0, [r1]!. Correct syntax is: str r0, [r1, #0]!. This change modifies the dumping of operands so that the offset is always printed, regardless of its value, when pre-indexed addressing mode is used. Patch by Mihail Popa <Mihail.Popa@arm.com> llvm-svn: 179398 |
||
---|---|---|
.. | ||
ARMInstPrinter.cpp | ||
ARMInstPrinter.h | ||
CMakeLists.txt | ||
LLVMBuild.txt | ||
Makefile |