OSDN Git Service

Typo. NFC.
authorChad Rosier <mcrosier@codeaurora.org>
Wed, 4 May 2016 15:42:29 +0000 (15:42 +0000)
committerChad Rosier <mcrosier@codeaurora.org>
Wed, 4 May 2016 15:42:29 +0000 (15:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268513 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Transforms/Utils/MemorySSA.h

index aa38dee..2de3192 100644 (file)
@@ -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,