[llvm-commits] [llvm] r171157 - /llvm/trunk/lib/Transforms/IPO/Inliner.cpp

Chandler Carruth chandlerc at gmail.com
Thu Dec 27 03:17:16 PST 2012


Author: chandlerc
Date: Thu Dec 27 05:17:15 2012
New Revision: 171157

URL: http://llvm.org/viewvc/llvm-project?rev=171157&view=rev
Log:
Make this parameter be named consistently with most other
getAnalysisUsage implementations.

Modified:
    llvm/trunk/lib/Transforms/IPO/Inliner.cpp

Modified: llvm/trunk/lib/Transforms/IPO/Inliner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/IPO/Inliner.cpp?rev=171157&r1=171156&r2=171157&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/IPO/Inliner.cpp (original)
+++ llvm/trunk/lib/Transforms/IPO/Inliner.cpp Thu Dec 27 05:17:15 2012
@@ -64,8 +64,8 @@
 /// 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);
 }
 
 





More information about the llvm-commits mailing list