forked from OSchip/llvm-project
Update some AliasAnalysis pass docs for getAdjustedAnalysisPointer.
Patch by George Burgess. llvm-svn: 209467
This commit is contained in:
parent
847c660ad5
commit
d328db1318
|
@ -246,6 +246,20 @@ analysis run method (``run`` for a ``Pass``, ``runOnFunction`` for a
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Required methods to override
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
You must override the ``getAdjustedAnalysisPointer`` method on all subclasses
|
||||||
|
of ``AliasAnalysis``. An example implementation of this method would look like:
|
||||||
|
|
||||||
|
.. code-block:: c++
|
||||||
|
|
||||||
|
void *getAdjustedAnalysisPointer(const void* ID) override {
|
||||||
|
if (ID == &AliasAnalysis::ID)
|
||||||
|
return (AliasAnalysis*)this;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
Interfaces which may be specified
|
Interfaces which may be specified
|
||||||
---------------------------------
|
---------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue