diff options
-rw-r--r-- | llvm/include/llvm/Transforms/Utils/MemorySSA.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Transforms/Utils/MemorySSA.h b/llvm/include/llvm/Transforms/Utils/MemorySSA.h index aa38deea1da..2de3192aefa 100644 --- a/llvm/include/llvm/Transforms/Utils/MemorySSA.h +++ b/llvm/include/llvm/Transforms/Utils/MemorySSA.h @@ -12,9 +12,9 @@ // walk memory instructions using a use/def graph. // // Memory SSA class builds an SSA form that links together memory access -// instructions such loads, stores, atomics, and calls. Additionally, it does a -// trivial form of "heap versioning" Every time the memory state changes in the -// program, we generate a new heap version. It generates MemoryDef/Uses/Phis +// instructions such as loads, stores, atomics, and calls. Additionally, it does +// a trivial form of "heap versioning" Every time the memory state changes in +// the program, we generate a new heap version. It generates MemoryDef/Uses/Phis // that are overlayed on top of the existing instructions. // // As a trivial example, |