Added comma after `i.e.'

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7367 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-07-28 19:21:20 +00:00
parent 3ce4ac62a0
commit 79223edea6

View File

@ -641,8 +641,8 @@ more complex example </h4><ul>
Say that you're writing a FunctionPass and would like to count all the Say that you're writing a FunctionPass and would like to count all the
locations in the entire module (that is, across every locations in the entire module (that is, across every
<tt>Function</tt>) where a certain function (i.e. some <tt>Function</tt>) where a certain function (i.e., some
<tt>Function</tt>*) already in scope. As you'll learn later, you may <tt>Function</tt>*) is already in scope. As you'll learn later, you may
want to use an <tt>InstVisitor</tt> to accomplish this in a much more want to use an <tt>InstVisitor</tt> to accomplish this in a much more
straightforward manner, but this example will allow us to explore how straightforward manner, but this example will allow us to explore how
you'd do it if you didn't have <tt>InstVisitor</tt> around. In you'd do it if you didn't have <tt>InstVisitor</tt> around. In
@ -869,8 +869,7 @@ For example:<p>
<p><i>Replacing individual instructions</i></p> <p><i>Replacing individual instructions</i></p>
<p> <p>
Including "<a Including "<a
href="/doxygen/BasicBlockUtils_8h-source.html">llvm/Transforms/Utils/BasicBlockUtils.h href="/doxygen/BasicBlockUtils_8h-source.html">llvm/Transforms/Utils/BasicBlockUtils.h</a>" permits use of two very useful replace functions:
</a>" permits use of two very useful replace functions:
<tt>ReplaceInstWithValue</tt> and <tt>ReplaceInstWithInst</tt>. <tt>ReplaceInstWithValue</tt> and <tt>ReplaceInstWithInst</tt>.
<ul> <ul>