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

Dan Gohman gohman at apple.com
Thu Sep 9 11:04:22 PDT 2010


Author: djg
Date: Thu Sep  9 13:04:22 2010
New Revision: 113511

URL: http://llvm.org/viewvc/llvm-project?rev=113511&view=rev
Log:
Fix this comment.

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=113511&r1=113510&r2=113511&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/AliasAnalysis.h (original)
+++ llvm/trunk/include/llvm/Analysis/AliasAnalysis.h Thu Sep  9 13:04:22 2010
@@ -308,8 +308,9 @@
     /// written to by the first.
     WriteThenReadSome,
 
-    /// ReadThenWrite - The instructions are ReadThenWriteSome and the second
-    /// instruction writes to exactly the same memory read from by the first.
+    /// ReadThenWrite - The first instruction is read-only, the second
+    /// instruction is write-only, and the second wrotes to exactly the
+    /// same memory read from by the first.
     ReadThenWrite,
 
     /// WriteThenWrite - The instructions are WriteThenWriteSome, and the





More information about the llvm-commits mailing list