Typo. NFC.
[oota-llvm.git] / lib / Analysis / CFLAliasAnalysis.cpp
index 9e2c9fb513830db8351b088a4f494c4cc34cd440..d937c0b2198a40a59ee75377a9a62fa64ca351f4 100644 (file)
@@ -14,8 +14,7 @@
 // Alias Analysis" by Zhang Q, Lyu M R, Yuan H, and Su Z. -- to summarize the
 // papers, we build a graph of the uses of a variable, where each node is a
 // memory location, and each edge is an action that happened on that memory
-// location.  The "actions" can be one of Dereference, Reference, Assign, or
-// Assign.
+// location.  The "actions" can be one of Dereference, Reference, or Assign.
 //
 // Two variables are considered as aliasing iff you can reach one value's node
 // from the other value's node and the language formed by concatenating all of