diff options
-rw-r--r-- | include/llvm/Analysis/AliasAnalysis.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Analysis/AliasAnalysis.h b/include/llvm/Analysis/AliasAnalysis.h index c1844be..c74f9e1 100644 --- a/include/llvm/Analysis/AliasAnalysis.h +++ b/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 |