[llvm-commits] [llvm] r77715 - /llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h
Dan Gohman
gohman at apple.com
Fri Jul 31 12:26:54 PDT 2009
Author: djg
Date: Fri Jul 31 14:26:54 2009
New Revision: 77715
URL: http://llvm.org/viewvc/llvm-project?rev=77715&view=rev
Log:
Fix a typo in a comment.
Modified:
llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h
Modified: llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h?rev=77715&r1=77714&r2=77715&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h (original)
+++ llvm/trunk/include/llvm/Analysis/MemoryDependenceAnalysis.h Fri Jul 31 14:26:54 2009
@@ -95,7 +95,7 @@
/// a instruction definition dependency.
bool isDef() const { return Value.getInt() == Def; }
- /// isNonLocal - Return true if this MemDepResult represents an query that
+ /// isNonLocal - Return true if this MemDepResult represents a query that
/// is transparent to the start of the block, but where a non-local hasn't
/// been done.
bool isNonLocal() const { return Value.getInt() == NonLocal; }
More information about the llvm-commits
mailing list