Two types of instructions have register lists:
authorBill Wendling <isanbard@gmail.com>
Tue, 9 Nov 2010 22:44:22 +0000 (22:44 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 9 Nov 2010 22:44:22 +0000 (22:44 +0000)
commit7729e06c128be01fc564870d5ea3d22d236dddb5
tree69eaf4e89a40f4044ed882db9bc05d1c332db9af
parente61a1ac595deddd291912930efac3616f7c61d08
Two types of instructions have register lists:

* LDM, et al, uses a bit mask to indicate the register list.
* VLDM, et al, uses a base register plus number.

The LDM instructions may be non-contiguous, but the VLDM ones must be
contiguous. Those are semantic checks that should be done later in the
compiler. Also postpone the creation of the bit mask until it's needed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118640 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/ARM/AsmParser/ARMAsmParser.cpp