diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-31 19:26:54 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-31 19:26:54 +0000 |
commit | 81acc554b9599bacf843e080dbf4c72fe88de0f7 (patch) | |
tree | ce8c67ca1ddf2c8fc2385ce6a173edd0d780103e /include | |
parent | 66e7a979996b89918f7a7c1641c275b0a84b7938 (diff) | |
download | external_llvm-81acc554b9599bacf843e080dbf4c72fe88de0f7.zip external_llvm-81acc554b9599bacf843e080dbf4c72fe88de0f7.tar.gz external_llvm-81acc554b9599bacf843e080dbf4c72fe88de0f7.tar.bz2 |
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77715 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/MemoryDependenceAnalysis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h index d7d795e..205c34a 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; } |