Fix comment in typo. NFC
authorNick Lewycky <nicholas@mxc.ca>
Mon, 4 Jan 2016 16:44:44 +0000 (16:44 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Mon, 4 Jan 2016 16:44:44 +0000 (16:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256761 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/MemoryDependenceAnalysis.cpp

index d1484be0f6f15e15fa0395902ed53f1a8ed960ee..06dcf94676c34b04afb58416454fb2a86e07d9d1 100644 (file)
@@ -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.