aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-07-02 20:20:50 +0000
committerDan Gohman <gohman@apple.com>2010-07-02 20:20:50 +0000
commitaf85b0cc0711711c384e1216c757c144d1d7fcab (patch)
tree0cfba4367c2a53fde5cdab4c6cabf895f3e9706b
parent908c105be3c4c20123d2d45f434386039aada840 (diff)
downloadexternal_llvm-af85b0cc0711711c384e1216c757c144d1d7fcab.zip
external_llvm-af85b0cc0711711c384e1216c757c144d1d7fcab.tar.gz
external_llvm-af85b0cc0711711c384e1216c757c144d1d7fcab.tar.bz2
Remove an unused enum.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107507 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Analysis/AliasAnalysis.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/llvm/Analysis/AliasAnalysis.h b/include/llvm/Analysis/AliasAnalysis.h
index 174482f..613dc20 100644
--- a/include/llvm/Analysis/AliasAnalysis.h
+++ b/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.