[llvm] r268513 - Typo. NFC.
Chad Rosier via llvm-commits
llvm-commits at lists.llvm.org
Wed May 4 08:42:29 PDT 2016
Author: mcrosier
Date: Wed May 4 10:42:29 2016
New Revision: 268513
URL: http://llvm.org/viewvc/llvm-project?rev=268513&view=rev
Log:
Typo. NFC.
Modified:
llvm/trunk/include/llvm/Transforms/Utils/MemorySSA.h
Modified: llvm/trunk/include/llvm/Transforms/Utils/MemorySSA.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Transforms/Utils/MemorySSA.h?rev=268513&r1=268512&r2=268513&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Transforms/Utils/MemorySSA.h (original)
+++ llvm/trunk/include/llvm/Transforms/Utils/MemorySSA.h Wed May 4 10:42:29 2016
@@ -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,
More information about the llvm-commits
mailing list