From 49609a5ddfe8a318eb155a9ccaf0464cd54aa3c7 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Wed, 8 Aug 2007 21:54:33 +0000 Subject: [PATCH] Add one more comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40949 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/MemoryDependenceAnalysis.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h index 409c10b01d5..76425d12bef 100644 --- a/include/llvm/Analysis/MemoryDependenceAnalysis.h +++ b/include/llvm/Analysis/MemoryDependenceAnalysis.h @@ -74,6 +74,9 @@ class MemoryDependenceAnalysis : public FunctionPass { const Instruction* getDependency(Instruction* query, Instruction* start = 0, BasicBlock* block = 0); + /// getNonLocalDependency - Fills the passed-in map with the non-local + /// dependencies of the queries. The map will contain NonLocal for + /// blocks between the query and its dependencies. void getNonLocalDependency(Instruction* query, DenseMap& resp);