summaryrefslogtreecommitdiff
path: root/docs/BigEndianNEON.rst
diff options
context:
space:
mode:
authorJames Molloy <james.molloy@arm.com>2014-05-12 15:30:31 +0000
committerJames Molloy <james.molloy@arm.com>2014-05-12 15:30:31 +0000
commit05052f660b373c2ee46db4ab12669cf38229165a (patch)
tree67044bb0014fd5d373ecdf957ff1fe98490201b5 /docs/BigEndianNEON.rst
parentb1b144c65a4ab2360775d4acfa4710c8e4714fbf (diff)
downloadllvm-05052f660b373c2ee46db4ab12669cf38229165a.tar.gz
llvm-05052f660b373c2ee46db4ab12669cf38229165a.tar.bz2
llvm-05052f660b373c2ee46db4ab12669cf38229165a.tar.xz
[ARM64-BE] Correct grammar mistake pointed out by Tobias.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208580 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/BigEndianNEON.rst')
-rw-r--r--docs/BigEndianNEON.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/BigEndianNEON.rst b/docs/BigEndianNEON.rst
index ef905bf816..4dc1628a0e 100644
--- a/docs/BigEndianNEON.rst
+++ b/docs/BigEndianNEON.rst
@@ -90,7 +90,7 @@ Considerations
LLVM IR Lane ordering
---------------------
-LLVM IR has first class vector types. In LLVM IR, the zero'th element of a vector resides at the lowest memory address. The optimizer relies on this property in certain areas, for example when concatenating vectors together. The intention is for arrays and vectors to have identical memory layouts - ``[4 x i8]`` and ``<4 x i8>`` should be represented the same in memory. Without this property there would be many special cases that the optimizer would have the cleverly handle.
+LLVM IR has first class vector types. In LLVM IR, the zero'th element of a vector resides at the lowest memory address. The optimizer relies on this property in certain areas, for example when concatenating vectors together. The intention is for arrays and vectors to have identical memory layouts - ``[4 x i8]`` and ``<4 x i8>`` should be represented the same in memory. Without this property there would be many special cases that the optimizer would have to cleverly handle.
Use of ``LDR`` would break this lane ordering property. This doesn't preclude the use of ``LDR``, but we would have to do one of two things: