From: Dan Gohman Date: Fri, 31 Jul 2009 19:26:54 +0000 (+0000) Subject: Fix a typo in a comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=81acc554b9599bacf843e080dbf4c72fe88de0f7;p=oota-llvm.git Fix a typo in a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77715 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h index d7d795e08a1..205c34ab5c8 100644 --- a/include/llvm/Analysis/MemoryDependenceAnalysis.h +++ b/include/llvm/Analysis/MemoryDependenceAnalysis.h @@ -95,7 +95,7 @@ namespace llvm { /// 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; }