mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-30 08:44:48 +00:00
Make AA private, since subclasses shouldn't (aren't don't) access it directly.
llvm-svn: 110398
This commit is contained in:
parent
b9762c07cb
commit
ecf79cf569
@ -43,8 +43,11 @@ class AnalysisUsage;
|
||||
class AliasAnalysis {
|
||||
protected:
|
||||
const TargetData *TD;
|
||||
|
||||
private:
|
||||
AliasAnalysis *AA; // Previous Alias Analysis to chain to.
|
||||
|
||||
protected:
|
||||
/// InitializeAliasAnalysis - Subclasses must call this method to initialize
|
||||
/// the AliasAnalysis interface before any other methods are called. This is
|
||||
/// typically called by the run* methods of these subclasses. This may be
|
||||
|
Loading…
x
Reference in New Issue
Block a user