diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2016-03-11 11:05:24 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2016-03-11 11:05:24 +0000 |
commit | b47f8010a95f461f995e30dc2b77391093183605 (patch) | |
tree | 49902b63ea6fa976481a52ca24f1797e3f60ed67 /llvm/tools | |
parent | f4cc1fc7e9d7df18176fc139b30f78c24ac0cc31 (diff) | |
download | bcm5719-llvm-b47f8010a95f461f995e30dc2b77391093183605.tar.gz bcm5719-llvm-b47f8010a95f461f995e30dc2b77391093183605.zip |
[PM] Make the AnalysisManager parameter to run methods a reference.
This was originally a pointer to support pass managers which didn't use
AnalysisManagers. However, that doesn't realistically come up much and
the complexity of supporting it doesn't really make sense.
In fact, *many* parts of the pass manager were just assuming the pointer
was never null already. This at least makes it much more explicit and
clear.
llvm-svn: 263219
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/opt/NewPMDriver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/opt/NewPMDriver.cpp b/llvm/tools/opt/NewPMDriver.cpp index e0cc88bc33f..130474408bd 100644 --- a/llvm/tools/opt/NewPMDriver.cpp +++ b/llvm/tools/opt/NewPMDriver.cpp @@ -118,7 +118,7 @@ bool llvm::runPassPipeline(StringRef Arg0, LLVMContext &Context, Module &M, cl::PrintOptionValues(); // Now that we have all of the passes ready, run them. - MPM.run(M, &MAM); + MPM.run(M, MAM); // Declare success. if (OK != OK_NoOutput) |