[llvm] r256761 - Fix comment in typo. NFC
Nick Lewycky via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 4 08:44:45 PST 2016
Author: nicholas
Date: Mon Jan 4 10:44:44 2016
New Revision: 256761
URL: http://llvm.org/viewvc/llvm-project?rev=256761&view=rev
Log:
Fix comment in typo. NFC
Modified:
llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp
Modified: llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp?rev=256761&r1=256760&r2=256761&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp (original)
+++ llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp Mon Jan 4 10:44:44 2016
@@ -477,7 +477,7 @@ MemDepResult MemoryDependenceAnalysis::g
// 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.
More information about the llvm-commits
mailing list