Update AnalysisGroup documentation to document restriction that allows
authorDevang Patel <dpatel@apple.com>
Wed, 20 Jun 2007 18:51:14 +0000 (18:51 +0000)
committerDevang Patel <dpatel@apple.com>
Wed, 20 Jun 2007 18:51:14 +0000 (18:51 +0000)
only one ImmutablePass in a group.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37675 91177308-0d34-0410-b5e6-96231b3b80d8

docs/WritingAnLLVMPass.html

index 3d896cf3a119cac2e82824234234e36f74ba1913..09e5f53d6cac78c0df0a6581d5b745f7982ca57f 100644 (file)
@@ -1308,8 +1308,9 @@ no problem.</p>
 <p>Here we show how the default implementation is specified (using the extra
 argument to the <tt>RegisterAnalysisGroup</tt> template).  There must be exactly
 one default implementation available at all times for an Analysis Group to be
-used.  Here we declare that the <tt><a
-href="http://llvm.org/doxygen/structBasicAliasAnalysis.html">BasicAliasAnalysis</a></tt>
+used.  Only default implementation can derive from <tt>ImmutablePass</tt>. 
+Here we declare that the
+ <tt><a href="http://llvm.org/doxygen/structBasicAliasAnalysis.html">BasicAliasAnalysis</a></tt>
 pass is the default implementation for the interface.</p>
 
 </div>