Fix a tag-o

llvm-svn: 12477
This commit is contained in:
Chris Lattner 2004-03-17 21:33:32 +00:00
parent 78ffe84887
commit ae6d999a7e

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;();
...
}