diff options
| author | Dan Gohman <gohman@apple.com> | 2010-07-02 20:20:50 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-07-02 20:20:50 +0000 |
| commit | 2eaa26e8ea7ee5ac67a57bd042b0d58a9adcb5ae (patch) | |
| tree | 9b5d0b8be14b3221e72ff212500edd0547ef4171 | |
| parent | 4d887f7ca7ce4a43413d68436c4420cfa1cee1b6 (diff) | |
| download | bcm5719-llvm-2eaa26e8ea7ee5ac67a57bd042b0d58a9adcb5ae.tar.gz bcm5719-llvm-2eaa26e8ea7ee5ac67a57bd042b0d58a9adcb5ae.zip | |
Remove an unused enum.
llvm-svn: 107507
| -rw-r--r-- | llvm/include/llvm/Analysis/AliasAnalysis.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/llvm/include/llvm/Analysis/AliasAnalysis.h b/llvm/include/llvm/Analysis/AliasAnalysis.h index 174482f56cb..613dc20215a 100644 --- a/llvm/include/llvm/Analysis/AliasAnalysis.h +++ b/llvm/include/llvm/Analysis/AliasAnalysis.h @@ -165,27 +165,6 @@ public: /// ModRefInfo - Whether the pointer is loaded or stored to/from. /// ModRefResult ModRefInfo; - - /// AccessType - Specific fine-grained access information for the argument. - /// If none of these classifications is general enough, the - /// getModRefBehavior method should not return AccessesArguments*. If a - /// record is not returned for a particular argument, the argument is never - /// dead and never dereferenced. - enum AccessType { - /// ScalarAccess - The pointer is dereferenced. - /// - ScalarAccess, - - /// ArrayAccess - The pointer is indexed through as an array of elements. - /// - ArrayAccess, - - /// ElementAccess ?? P->F only? - - /// CallsThrough - Indirect calls are made through the specified function - /// pointer. - CallsThrough - }; }; /// getModRefBehavior - Return the behavior when calling the given call site. |

