diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-07-06 21:26:18 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-07-06 21:26:18 +0000 |
commit | 30377a614c8d671f0da10e59416afbe2a282a2ff (patch) | |
tree | d36692cefe3cf8c98124ebe002c6eec56491c1bf /lib/Target/ARM/ARMAddressingModes.h | |
parent | daa41b4ed9f6828f017691815f79447de913e4eb (diff) | |
download | external_llvm-30377a614c8d671f0da10e59416afbe2a282a2ff.tar.gz external_llvm-30377a614c8d671f0da10e59416afbe2a282a2ff.tar.bz2 external_llvm-30377a614c8d671f0da10e59416afbe2a282a2ff.zip |
Represent NEON load/store alignments in bytes, not bits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107701 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMAddressingModes.h')
-rw-r--r-- | lib/Target/ARM/ARMAddressingModes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMAddressingModes.h b/lib/Target/ARM/ARMAddressingModes.h index e68354a42f..d136afa544 100644 --- a/lib/Target/ARM/ARMAddressingModes.h +++ b/lib/Target/ARM/ARMAddressingModes.h @@ -520,6 +520,8 @@ namespace ARM_AM { // This is stored in two operands [regaddr, align]. The first is the // address register. The second operand is the value of the alignment // specifier to use or zero if no explicit alignment. + // Valid alignments are: 0, 8, 16, and 32 bytes, depending on the specific + // instruction. } // end namespace ARM_AM } // end namespace llvm |