[llvm-commits] [llvm] r118693 - /llvm/trunk/include/llvm/Analysis/AliasAnalysis.h

Dan Gohman gohman at apple.com
Wed Nov 10 10:18:23 PST 2010


Author: djg
Date: Wed Nov 10 12:18:23 2010
New Revision: 118693

URL: http://llvm.org/viewvc/llvm-project?rev=118693&view=rev
Log:
Fix a copy+pasto Duncan noticed.

Modified:
    llvm/trunk/include/llvm/Analysis/AliasAnalysis.h

Modified: llvm/trunk/include/llvm/Analysis/AliasAnalysis.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/AliasAnalysis.h?rev=118693&r1=118692&r2=118693&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/AliasAnalysis.h (original)
+++ llvm/trunk/include/llvm/Analysis/AliasAnalysis.h Wed Nov 10 12:18:23 2010
@@ -276,8 +276,8 @@
   }
 
   /// onlyAccessesArgPointees - Return true if functions with the specified
-  /// behavior are known to read at most from objects pointed to by their
-  /// pointer-typed arguments (with arbitrary offsets).
+  /// behavior are known to read and write at most from objects pointed to by
+  /// their pointer-typed arguments (with arbitrary offsets).
   ///
   static bool onlyAccessesArgPointees(ModRefBehavior MRB) {
     return !(MRB & Anywhere & ~ArgumentPointees);





More information about the llvm-commits mailing list