From 5a913d61e3480f0ef825e284c09a7811deef8a1c Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Wed, 28 Jan 2009 13:14:17 +0000 Subject: Rename getAnalysisToUpdate to getAnalysisIfAvailable. llvm-svn: 63198 --- llvm/docs/CompilerDriver.html | 2 +- llvm/docs/WritingAnLLVMPass.html | 12 ++++++----- llvm/include/llvm/Pass.h | 24 +++++++++++----------- llvm/include/llvm/PassAnalysisSupport.h | 22 ++++++++++---------- llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 8 ++++---- llvm/lib/CodeGen/BranchFolding.cpp | 2 +- llvm/lib/CodeGen/GCMetadata.cpp | 2 +- llvm/lib/CodeGen/GCStrategy.cpp | 2 +- llvm/lib/CodeGen/MachineModuleInfo.cpp | 2 +- llvm/lib/CodeGen/PHIElimination.cpp | 2 +- llvm/lib/CodeGen/PrologEpilogInserter.cpp | 2 +- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 4 ++-- llvm/lib/CodeGen/TwoAddressInstructionPass.cpp | 2 +- llvm/lib/CodeGen/UnreachableBlockElim.cpp | 2 +- llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp | 4 ++-- .../Target/CellSPU/AsmPrinter/SPUAsmPrinter.cpp | 4 ++-- .../Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp | 8 ++++---- .../lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp | 10 ++++----- llvm/lib/Target/XCore/XCoreAsmPrinter.cpp | 4 ++-- llvm/lib/Transforms/IPO/Internalize.cpp | 2 +- llvm/lib/Transforms/Scalar/LoopRotation.cpp | 6 +++--- llvm/lib/Transforms/Scalar/LoopUnroll.cpp | 4 ++-- llvm/lib/Transforms/Scalar/LoopUnswitch.cpp | 4 ++-- llvm/lib/Transforms/Utils/BasicBlockUtils.cpp | 14 ++++++------- llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp | 6 +++--- llvm/lib/Transforms/Utils/CloneLoop.cpp | 4 ++-- llvm/lib/Transforms/Utils/LoopSimplify.cpp | 4 ++-- llvm/lib/VMCore/Pass.cpp | 2 +- llvm/lib/VMCore/PassManager.cpp | 8 ++++---- 29 files changed, 87 insertions(+), 85 deletions(-) (limited to 'llvm') diff --git a/llvm/docs/CompilerDriver.html b/llvm/docs/CompilerDriver.html index fc687f16675..6338dd24769 100644 --- a/llvm/docs/CompilerDriver.html +++ b/llvm/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/llvm/docs/WritingAnLLVMPass.html b/llvm/docs/WritingAnLLVMPass.html index 0f37ec276c4..04bd9266118 100644 --- a/llvm/docs/WritingAnLLVMPass.html +++ b/llvm/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