From: Chad Rosier Date: Wed, 4 May 2016 15:42:29 +0000 (+0000) Subject: Typo. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa48f229ff447ab1cc22e031f85ed842acb12780;p=llvm Typo. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268513 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Transforms/Utils/MemorySSA.h b/include/llvm/Transforms/Utils/MemorySSA.h index aa38deea1da..2de3192aefa 100644 --- a/include/llvm/Transforms/Utils/MemorySSA.h +++ b/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,