diff options
author | Devang Patel <dpatel@apple.com> | 2007-06-20 18:51:14 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2007-06-20 18:51:14 +0000 |
commit | 2397f8d0c6548e4021546ff1a58104284d79cda7 (patch) | |
tree | 0982a8d0fd8b075916ebc0e122aa1e0a11c7c188 /docs | |
parent | b011c66da4412327619352f2b4a625b574b592b1 (diff) | |
download | external_llvm-2397f8d0c6548e4021546ff1a58104284d79cda7.zip external_llvm-2397f8d0c6548e4021546ff1a58104284d79cda7.tar.gz external_llvm-2397f8d0c6548e4021546ff1a58104284d79cda7.tar.bz2 |
Update AnalysisGroup documentation to document restriction that allows
only one ImmutablePass in a group.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37675 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/WritingAnLLVMPass.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 3d896cf..09e5f53 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -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> |