From: Duncan Sands Date: Wed, 28 Jan 2009 13:14:17 +0000 (+0000) Subject: Rename getAnalysisToUpdate to getAnalysisIfAvailable. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1465d61bdd36cfd6021036a527895f0dd358e97d;p=oota-llvm.git Rename getAnalysisToUpdate to getAnalysisIfAvailable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63198 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/CompilerDriver.html b/docs/CompilerDriver.html index fc687f16675..6338dd24769 100644 --- a/docs/CompilerDriver.html +++ b/docs/CompilerDriver.html @@ -611,7 +611,7 @@ errors as its status code.

Mikhail Glushenkov
LLVM Compiler Infrastructure
-Last modified: $Date: 2008-12-11 11:34:48 -0600 (Thu, 11 Dec 2008) $ +Last modified: $Date$ diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 0f37ec276c4..04bd9266118 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -78,7 +78,8 @@
  • The AnalysisUsage::addRequired<> and AnalysisUsage::addRequiredTransitive<> methods
  • The AnalysisUsage::addPreserved<> method
  • Example implementations of getAnalysisUsage
  • -
  • The getAnalysis<> and getAnalysisToUpdate<> methods
  • +
  • The getAnalysis<> and +getAnalysisIfAvailable<> methods
  • Implementing Analysis Groups