Make this parameter be named consistently with most other

getAnalysisUsage implementations.

llvm-svn: 171157
This commit is contained in:
Chandler Carruth 2012-12-27 11:17:15 +00:00
parent 0f2eabce10
commit e40e60eed5
1 changed files with 2 additions and 2 deletions

View 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);
}