diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2015-06-19 17:32:57 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2015-06-19 17:32:57 +0000 |
commit | 38c6ad2debdfef61fd50096dcb00a204d4b67f0a (patch) | |
tree | 19de427fa3a05f47db5b687c2265bdd0161e024d | |
parent | f3a3b5d6e0ccac7dc93b0038845b7eb045260345 (diff) | |
download | bcm5719-llvm-38c6ad2debdfef61fd50096dcb00a204d4b67f0a.tar.gz bcm5719-llvm-38c6ad2debdfef61fd50096dcb00a204d4b67f0a.zip |
Typo. NFC.
llvm-svn: 240141
-rw-r--r-- | llvm/lib/Analysis/CFLAliasAnalysis.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/CFLAliasAnalysis.cpp b/llvm/lib/Analysis/CFLAliasAnalysis.cpp index 9e2c9fb5138..d937c0b2198 100644 --- a/llvm/lib/Analysis/CFLAliasAnalysis.cpp +++ b/llvm/lib/Analysis/CFLAliasAnalysis.cpp @@ -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 |