remove graphprinter support for domfrontier.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128938 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index 1bf3621..b437357 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -427,6 +427,7 @@
   GVN is much faster on functions with deep dominator trees / lots of BBs.
   DomTree and DominatorFrontier are much faster to compute, and preserved by
     more passes (so they are computed less often)
+  SRoA is also much faster and doesn't use DominanceFrontier.
   
   
 new 'hotpatch' attribute: LangRef.html#fnattrs
@@ -456,6 +457,9 @@
   
 Removed the PartialSpecialization pass, it was unmaintained and buggy.
   
+SPARC: Many improvements, including using the Y registers for multiplications
+  and addition of a simple delay slot filler.
+  
 </pre></li>
 </ul>
   
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index edc8631..97db123 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -1207,17 +1207,6 @@
 <div class="doc_text">
 
 <div class="doc_code"><pre>
-  <i>// This is an example implementation from an analysis, which does not modify
-  // the program at all, yet has a prerequisite.</i>
-  <b>void</b> <a href="http://llvm.org/doxygen/classllvm_1_1PostDominanceFrontier.html">PostDominanceFrontier</a>::getAnalysisUsage(AnalysisUsage &amp;AU) <b>const</b> {
-    AU.setPreservesAll();
-    AU.addRequired&lt;<a href="http://llvm.org/doxygen/classllvm_1_1PostDominatorTree.html">PostDominatorTree</a>&gt;();
-  }
-</pre></div>
-
-<p>and:</p>
-
-<div class="doc_code"><pre>
   <i>// This example modifies the program, but does not modify the CFG</i>
   <b>void</b> <a href="http://llvm.org/doxygen/structLICM.html">LICM</a>::getAnalysisUsage(AnalysisUsage &amp;AU) <b>const</b> {
     AU.setPreservesCFG();