From: Chandler Carruth Date: Thu, 27 Dec 2012 11:17:15 +0000 (+0000) Subject: Make this parameter be named consistently with most other X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7ccc2f7a7859a72ce73e6d8dc4242c6dd7984c45;p=oota-llvm.git Make this parameter be named consistently with most other getAnalysisUsage implementations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171157 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/Inliner.cpp b/lib/Transforms/IPO/Inliner.cpp index a854beb9b1e..0624e746bc9 100644 --- a/lib/Transforms/IPO/Inliner.cpp +++ b/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); }