diff options
| author | Owen Anderson <resistor@mac.com> | 2010-07-20 08:26:15 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2010-07-20 08:26:15 +0000 |
| commit | cb14cb861b75a0a643c16851af1c350ce7b38d4c (patch) | |
| tree | c8c82d984f9dc21c27426099f79bd412a2ff95c9 /lib/Analysis/BasicAliasAnalysis.cpp | |
| parent | 9de4bbd3bd32eb9ab2cfc6c837efec548c287e07 (diff) | |
| download | external_llvm-cb14cb861b75a0a643c16851af1c350ce7b38d4c.zip external_llvm-cb14cb861b75a0a643c16851af1c350ce7b38d4c.tar.gz external_llvm-cb14cb861b75a0a643c16851af1c350ce7b38d4c.tar.bz2 | |
Speculatively revert r108813, in an attempt to get the self-host buildbots working again. I don't see why this patch
would cause them to fail the way they are, but none of the other intervening patches seem likely either.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108818 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/BasicAliasAnalysis.cpp')
| -rw-r--r-- | lib/Analysis/BasicAliasAnalysis.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/BasicAliasAnalysis.cpp b/lib/Analysis/BasicAliasAnalysis.cpp index 91a17e5..4f53a6d 100644 --- a/lib/Analysis/BasicAliasAnalysis.cpp +++ b/lib/Analysis/BasicAliasAnalysis.cpp @@ -172,7 +172,7 @@ namespace { /// an analysis interface through multiple inheritance. If needed, it should /// override this to adjust the this pointer as needed for the specified pass /// info. - virtual void *getAdjustedAnalysisPointer(const StaticPassInfo *PI) { + virtual void *getAdjustedAnalysisPointer(const PassInfo *PI) { if (PI->isPassID(&AliasAnalysis::ID)) return (AliasAnalysis*)this; return this; @@ -243,7 +243,7 @@ namespace { /// an analysis interface through multiple inheritance. If needed, it should /// override this to adjust the this pointer as needed for the specified pass /// info. - virtual void *getAdjustedAnalysisPointer(const StaticPassInfo *PI) { + virtual void *getAdjustedAnalysisPointer(const PassInfo *PI) { if (PI->isPassID(&AliasAnalysis::ID)) return (AliasAnalysis*)this; return this; |
