diff options
author | Dan Gohman <gohman@apple.com> | 2010-09-09 18:04:22 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-09-09 18:04:22 +0000 |
commit | 154cb1437e096ab384aa1922a93d2949ce583def (patch) | |
tree | eb4d81f3da84747498b03b16ea6babac8430fda5 | |
parent | 5c9fdfa46d29ee15534e6b926a874cfe4a0e7764 (diff) | |
download | bcm5719-llvm-154cb1437e096ab384aa1922a93d2949ce583def.tar.gz bcm5719-llvm-154cb1437e096ab384aa1922a93d2949ce583def.zip |
Fix this comment.
llvm-svn: 113511
-rw-r--r-- | llvm/include/llvm/Analysis/AliasAnalysis.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/include/llvm/Analysis/AliasAnalysis.h b/llvm/include/llvm/Analysis/AliasAnalysis.h index c1844be9aa9..c74f9e11431 100644 --- a/llvm/include/llvm/Analysis/AliasAnalysis.h +++ b/llvm/include/llvm/Analysis/AliasAnalysis.h @@ -308,8 +308,9 @@ public: /// 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 |