summaryrefslogtreecommitdiff
path: root/docs/AliasAnalysis.rst
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2016-01-13 16:46:41 +0000
committerSanjay Patel <spatel@rotateright.com>2016-01-13 16:46:41 +0000
commit57353d1bccbddaf178cde8538f720d369bd20ee4 (patch)
treea01c47a24418aa87018cb66aba675fffaf8afdfb /docs/AliasAnalysis.rst
parent5ef672de8d5bcad2936fa0a77d5e27aab40654e7 (diff)
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@257617 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/AliasAnalysis.rst')
-rw-r--r--docs/AliasAnalysis.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/AliasAnalysis.rst b/docs/AliasAnalysis.rst
index e69dafd81a8..e055b4e1afb 100644
--- a/docs/AliasAnalysis.rst
+++ b/docs/AliasAnalysis.rst
@@ -190,7 +190,7 @@ this property are side-effect free, only depending on their input arguments and
the state of memory when they are called. This property allows calls to these
functions to be eliminated and moved around, as long as there is no store
instruction that changes the contents of memory. Note that all functions that
-satisfy the ``doesNotAccessMemory`` method also satisfies ``onlyReadsMemory``.
+satisfy the ``doesNotAccessMemory`` method also satisfy ``onlyReadsMemory``.
Writing a new ``AliasAnalysis`` Implementation
==============================================