From 862974638a487a3a650c6f0f5f9d4f97dc15660e Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 5 Dec 2008 05:35:21 +0000 Subject: [PATCH] Update comments. There is no getArgumentAccesses. llvm-svn: 60585 --- include/llvm/Analysis/AliasAnalysis.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/llvm/Analysis/AliasAnalysis.h b/include/llvm/Analysis/AliasAnalysis.h index e013a4dc6de..c705bccca4d 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