diff options
author | Tobias Grosser <tobias@grosser.es> | 2016-03-03 19:48:30 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2016-03-03 19:48:30 +0000 |
commit | 4e442d75e59d2fd44c164b0d00b848eb6ebfd09d (patch) | |
tree | 20c409505811137d701ad506e21d44b132d96c50 /polly/docs | |
parent | 146307eb52f1fa03cf04a81e218807173d6e08f9 (diff) | |
download | bcm5719-llvm-4e442d75e59d2fd44c164b0d00b848eb6ebfd09d.tar.gz bcm5719-llvm-4e442d75e59d2fd44c164b0d00b848eb6ebfd09d.zip |
docs: Fix some spelling mistakes
llvm-svn: 262647
Diffstat (limited to 'polly/docs')
-rw-r--r-- | polly/docs/ReleaseNotes.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/docs/ReleaseNotes.rst b/polly/docs/ReleaseNotes.rst index 8e186c40167..3b7a8f5cde7 100644 --- a/polly/docs/ReleaseNotes.rst +++ b/polly/docs/ReleaseNotes.rst @@ -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 two other kinds. The first are 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. |