aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-12-05 05:35:21 +0000
committerDan Gohman <gohman@apple.com>2008-12-05 05:35:21 +0000
commit4c0d95178010c8788129b392ab6a1c62484f1620 (patch)
tree91b605d5ca1adcdeac265aa1c90e350ead0e0406
parent9bf23b54524c06efd164648b613fd724e8d4494b (diff)
Update comments. There is no getArgumentAccesses.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60585 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Analysis/AliasAnalysis.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Analysis/AliasAnalysis.h b/include/llvm/Analysis/AliasAnalysis.h
index e013a4dc6d..c705bccca4 100644
--- a/include/llvm/Analysis/AliasAnalysis.h
+++ b/include/llvm/Analysis/AliasAnalysis.h
@@ -129,16 +129,16 @@ public:
// AccessesArguments - This function accesses function arguments in
// non-volatile and well known ways, but does not access any other memory.
//
- // Clients may call getArgumentAccesses to get specific information about
- // how pointer arguments are used.
+ // Clients may use the Info parameter of getModRefBehavior to get specific
+ // information about how pointer arguments are used.
AccessesArguments,
// AccessesArgumentsAndGlobals - This function has accesses function
// arguments and global variables in non-volatile and well-known ways, but
// does not access any other memory.
//
- // Clients may call getArgumentAccesses to get specific information about
- // how pointer arguments and globals are used.
+ // Clients may use the Info parameter of getModRefBehavior to get specific
+ // information about how pointer arguments are used.
AccessesArgumentsAndGlobals,
// OnlyReadsMemory - This function does not perform any non-local stores or