diff options
author | Chris Lattner <sabre@nondot.org> | 2008-12-09 19:38:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-12-09 19:38:05 +0000 |
commit | 1559b3625be7b80bee6b066af4b91b9d10dfb5fa (patch) | |
tree | a9166685ae8d512b5c420af13770e270d317fc05 /include/llvm/Analysis/MemoryDependenceAnalysis.h | |
parent | 91bcf6450ab063204a7ccd933d7db40028485147 (diff) |
rename getNonLocalDependency -> getNonLocalCallDependency, and remove
pointer stuff from it, simplifying the code a bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60783 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/MemoryDependenceAnalysis.h')
-rw-r--r-- | include/llvm/Analysis/MemoryDependenceAnalysis.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h index f408423b22..d7b1fbf8b6 100644 --- a/include/llvm/Analysis/MemoryDependenceAnalysis.h +++ b/include/llvm/Analysis/MemoryDependenceAnalysis.h @@ -215,8 +215,8 @@ namespace llvm { /// this on non-memory instructions. MemDepResult getDependency(Instruction *QueryInst); - /// getNonLocalDependency - Perform a full dependency query for the - /// specified instruction, returning the set of blocks that the value is + /// getNonLocalCallDependency - Perform a full dependency query for the + /// specified call, returning the set of blocks that the value is /// potentially live across. The returned set of results will include a /// "NonLocal" result for all blocks where the value is live across. /// @@ -227,7 +227,7 @@ namespace llvm { /// invalidated on the next non-local query or when an instruction is /// removed. Clients must copy this data if they want it around longer than /// that. - const NonLocalDepInfo &getNonLocalDependency(Instruction *QueryInst); + const NonLocalDepInfo &getNonLocalCallDependency(CallSite QueryCS); /// getNonLocalPointerDependency - Perform a full dependency query for an |