Update comments. There is no getArgumentAccesses.
authorDan Gohman <gohman@apple.com>
Fri, 5 Dec 2008 05:35:21 +0000 (05:35 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 5 Dec 2008 05:35:21 +0000 (05:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60585 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/AliasAnalysis.h

index e013a4dc6debe4a3427fbea9370c818b6d085806..c705bccca4d3e5dd697559d4bc67dc0b363a4ed3 100644 (file)
@@ -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