Validation fixes

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42229 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2007-09-22 10:03:25 +00:00
parent 83f4900c8a
commit 96802d1602

View File

@ -512,7 +512,8 @@ library. There are two problems with this:</p>
more pressure on the VM system on low-memory machines.</li> more pressure on the VM system on low-memory machines.</li>
</ol> </ol>
<table align="center"> <div style="align: center">
<table>
<tbody> <tbody>
<tr> <tr>
<th>Old Way</th> <th>Old Way</th>
@ -553,19 +554,21 @@ dump(DOUT);</pre></td>
<td align="left"><pre>llvm::StringStream</pre></td> <td align="left"><pre>llvm::StringStream</pre></td>
</tr> </tr>
<tr> <tr>
<td align="left"><pre>void print(std::ostream &Out); <td align="left"><pre>void print(std::ostream &amp;Out);
// ... // ...
print(std::cerr);</pre></td> print(std::cerr);</pre></td>
<td align="left"><pre>void print(std::ostream &Out); <td align="left"><pre>void print(std::ostream &amp;Out);
void print(std::ostream *Out) { if (Out) print(*Out) } void print(std::ostream *Out) { if (Out) print(*Out) }
// ... // ...
print(llvm::cerr);</pre> print(llvm::cerr);</pre>
<ul><i>N.B.</i> The second <tt>print</tt> method is called by the <tt>print</tt> <div class="doc_text">
<i>N.B.</i> The second <tt>print</tt> method is called by the <tt>print</tt>
expression. It prevents the execution of the first <tt>print</tt> method if the expression. It prevents the execution of the first <tt>print</tt> method if the
stream is <tt>cnull</tt>.</ul></td> stream is <tt>cnull</tt>.</div></td>
</tbody> </tbody>
</table> </table>
</div>
</div> </div>