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 | 01ea674c5bcbeb8ba6233dea3e13bccca66eb69d (patch) | |
tree | a53287b8d6291c9ae649464e430df56c72f3fdbd /llvm | |
parent | 8d3b57d462f90410fa58dc987fcd39c0edf03042 (diff) | |
download | bcm5719-llvm-01ea674c5bcbeb8ba6233dea3e13bccca66eb69d.tar.gz bcm5719-llvm-01ea674c5bcbeb8ba6233dea3e13bccca66eb69d.zip |
Fix a typo in a comment.
llvm-svn: 77715
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h b/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h index d7d795e08a1..205c34ab5c8 100644 --- a/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h +++ b/llvm/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; } |