From: Tobias Grosser Date: Wed, 20 Oct 2010 01:54:44 +0000 (+0000) Subject: Add RegionPass support. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=65513605353c7e3ee8be6fc92892f257ad399d92 Add RegionPass support. A RegionPass is executed like a LoopPass but on the regions detected by the RegionInfo pass instead of the loops detected by the LoopInfo pass. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116905 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 3cef2c93448..a1d55649016 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -51,6 +51,14 @@
  • The doFinalization() method
  • +
  • The RegionPass class +
  • The BasicBlockPass class