Fix a tag-o

llvm-svn: 12477
This commit is contained in:
Chris Lattner 2004-03-17 21:33:32 +00:00
parent 8e8716518e
commit baf3f62819
1 changed files with 1 additions and 1 deletions

View File

@ -912,7 +912,7 @@ method. It takes a single template argument that specifies which pass class you
want, and returns a reference to that pass. For example:</p>
<pre>
bool LICM::runOnFunction(Function &F) {
bool LICM::runOnFunction(Function &amp;F) {
LoopInfo &amp;LI = getAnalysis&lt;LoopInfo&gt;();
...
}