From e40e60eed57817e2c771d97cb924bb0c6226b98b Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Thu, 27 Dec 2012 11:17:15 +0000 Subject: [PATCH] Make this parameter be named consistently with most other getAnalysisUsage implementations. llvm-svn: 171157 --- llvm/lib/Transforms/IPO/Inliner.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/Transforms/IPO/Inliner.cpp b/llvm/lib/Transforms/IPO/Inliner.cpp index a854beb9b1e0..0624e746bc90 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); }