Make this parameter be named consistently with most other
authorChandler Carruth <chandlerc@gmail.com>
Thu, 27 Dec 2012 11:17:15 +0000 (11:17 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Thu, 27 Dec 2012 11:17:15 +0000 (11:17 +0000)
getAnalysisUsage implementations.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171157 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/Inliner.cpp

index a854beb9b1e0eb1fdcc1b781a51da65e4ef6376d..0624e746bc902182f87fbcc113c913d385abbd2f 100644 (file)
@@ -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);
 }