[polly] r262647 - docs: Fix some spelling mistakes

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 3 11:48:31 PST 2016


Author: grosser
Date: Thu Mar  3 13:48:30 2016
New Revision: 262647

URL: http://llvm.org/viewvc/llvm-project?rev=262647&view=rev
Log:
docs: Fix some spelling mistakes

Modified:
    polly/trunk/docs/ReleaseNotes.rst

Modified: polly/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/docs/ReleaseNotes.rst?rev=262647&r1=262646&r2=262647&view=diff
==============================================================================
--- polly/trunk/docs/ReleaseNotes.rst (original)
+++ polly/trunk/docs/ReleaseNotes.rst Thu Mar  3 13:48:30 2016
@@ -29,7 +29,7 @@ can model and optimize such code.
 
 If the accesses are not aligned with the size of the access type we model them
 as multiple accesses to an array of smaller elements. This is especially
-usefull for structs containing different typed elements as accesses to them are
+useful for structs containing different typed elements as accesses to them are
 represented using only one base pointer, namely the ``struct`` itself.  In the
 example below the accesses to ``s`` are all modeled as if ``s`` was a single
 char array because the accesses to ``s->A`` and ``s->B`` are not aligned with
@@ -60,8 +60,8 @@ supported before, we now allow and model
 intrinsic calls to ``memcpy``, ``memmove`` and ``memset``. These calls can be
 represented precisely if the pointers involved are known and the given length
 is affine. Additionally, we allow to over-approximate function calls that are
-known only to read memory, read memory accesible through pointer arguments or
-access only memory accesible through pointer arguments. See also the function
+known only to read memory, read memory accessible through pointer arguments or
+access only memory accessible through pointer arguments. See also the function
 attributes ``readonly`` and ``argmemonly`` for more information.
 
 




More information about the llvm-commits mailing list