mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
[PM] Teach the analysis managers to pass themselves as arguments to the
run methods of the analysis passes. Also generalizes and re-uses the SFINAE for transformation passes so that users can write an analysis pass and only accept an analysis manager if that is useful to their pass. This completes the plumbing to make an analysis manager available through every pass's run method if desired so that passes no longer need to be constructed around them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195451 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -32,7 +32,7 @@ public:
|
||||
TestAnalysisPass(int &Runs) : Runs(Runs) {}
|
||||
|
||||
/// \brief Run the analysis pass over the function and return a result.
|
||||
Result run(Function *F) {
|
||||
Result run(Function *F, FunctionAnalysisManager *AM) {
|
||||
++Runs;
|
||||
int Count = 0;
|
||||
for (Function::iterator BBI = F->begin(), BBE = F->end(); BBI != BBE; ++BBI)
|
||||
|
Reference in New Issue
Block a user