diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2016-01-04 16:44:44 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2016-01-04 16:44:44 +0000 |
commit | 947ca8ac5209b9f4da32ffbf31b943947a4022a9 (patch) | |
tree | cb2423ec27f353bb20fcdd7b12f84fa4bd322dc1 /llvm/lib/Analysis/MemoryDependenceAnalysis.cpp | |
parent | 52f729a613910f0b03420e1912d301c17e975a22 (diff) | |
download | llvm-947ca8ac5209b9f4da32ffbf31b943947a4022a9.zip llvm-947ca8ac5209b9f4da32ffbf31b943947a4022a9.tar.gz llvm-947ca8ac5209b9f4da32ffbf31b943947a4022a9.tar.bz2 |
Fix comment in typo. NFC
llvm-svn: 256761
Diffstat (limited to 'llvm/lib/Analysis/MemoryDependenceAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/MemoryDependenceAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp b/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp index d1484be..06dcf94 100644 --- a/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp +++ b/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp @@ -477,7 +477,7 @@ MemDepResult MemoryDependenceAnalysis::getSimplePointerDependencyFrom( // being 42. A key property of this program however is that if either // 1 or 4 were missing, there would be a race between the store of 42 // either the store of 0 or the load (making the whole progam racy). - // The paper mentionned above shows that the same property is respected + // The paper mentioned above shows that the same property is respected // by every program that can detect any optimisation of that kind: either // it is racy (undefined) or there is a release followed by an acquire // between the pair of accesses under consideration. |