diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-27 11:17:15 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-27 11:17:15 +0000 |
commit | e40e60eed57817e2c771d97cb924bb0c6226b98b (patch) | |
tree | 72f3c7917691b4b659defc322413268001efdf79 /llvm/lib/Transforms/IPO/Inliner.cpp | |
parent | 0f2eabce105f39c3b9f50e07c58187e944e09a35 (diff) | |
download | bcm5719-llvm-e40e60eed57817e2c771d97cb924bb0c6226b98b.tar.gz bcm5719-llvm-e40e60eed57817e2c771d97cb924bb0c6226b98b.zip |
Make this parameter be named consistently with most other
getAnalysisUsage implementations.
llvm-svn: 171157
Diffstat (limited to 'llvm/lib/Transforms/IPO/Inliner.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/Inliner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/IPO/Inliner.cpp b/llvm/lib/Transforms/IPO/Inliner.cpp index a854beb9b1e..0624e746bc9 100644 --- a/llvm/lib/Transforms/IPO/Inliner.cpp +++ b/llvm/lib/Transforms/IPO/Inliner.cpp @@ -64,8 +64,8 @@ Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime) /// getAnalysisUsage - For this class, we declare that we require and preserve /// the call graph. If the derived class implements this method, it should /// always explicitly call the implementation here. -void Inliner::getAnalysisUsage(AnalysisUsage &Info) const { - CallGraphSCCPass::getAnalysisUsage(Info); +void Inliner::getAnalysisUsage(AnalysisUsage &AU) const { + CallGraphSCCPass::getAnalysisUsage(AU); } |