[llvm] r257617 - fix typo

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 13 08:46:41 PST 2016


Author: spatel
Date: Wed Jan 13 10:46:41 2016
New Revision: 257617

URL: http://llvm.org/viewvc/llvm-project?rev=257617&view=rev
Log:
fix typo

Modified:
    llvm/trunk/docs/AliasAnalysis.rst

Modified: llvm/trunk/docs/AliasAnalysis.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/AliasAnalysis.rst?rev=257617&r1=257616&r2=257617&view=diff
==============================================================================
--- llvm/trunk/docs/AliasAnalysis.rst (original)
+++ llvm/trunk/docs/AliasAnalysis.rst Wed Jan 13 10:46:41 2016
@@ -190,7 +190,7 @@ this property are side-effect free, only
 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
 ==============================================




More information about the llvm-commits mailing list