Avoid using two i's in the same statements
authorChris Lattner <sabre@nondot.org>
Tue, 17 Sep 2002 22:43:00 +0000 (22:43 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 17 Sep 2002 22:43:00 +0000 (22:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3784 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ProgrammersManual.html

index 28a5079385735da767b9ffd2d13f19c0774c3564..93ee0f3f2626e377e93e146423df9e3ae4fcca5f 100644 (file)
@@ -560,9 +560,9 @@ all <tt>User</tt>s of a particular <tt>Value</tt> is called a
 Function* F = ...;
 
 for(Value::use_iterator i = F-&gt;use_begin(), e = F-&gt;use_end(); i != e; ++i) {
-    if(Instruction* i = dyn_cast&lt;Instruction&gt;(*i)) {
-        cerr &lt;&lt; "F is used in instruction:\n\t";
-        cerr &lt;&lt; *i &lt;&lt; "\n";
+    if(Instruction* Inst = dyn_cast&lt;Instruction&gt;(*i)) {
+        cerr &lt;&lt; "F is used in instruction:\n";
+        cerr &lt;&lt; *Inst &lt;&lt; "\n";
     }
 }
 </pre>
@@ -1575,6 +1575,6 @@ pointer to the parent Function.
 <a href="mailto:sabre@nondot.org">Chris Lattner</a></address>
 <!-- Created: Tue Aug  6 15:00:33 CDT 2002 -->
 <!-- hhmts start -->
-Last modified: Mon Sep 16 17:07:43 CDT 2002
+Last modified: Tue Sep 17 17:41:54 CDT 2002
 <!-- hhmts end -->
 </font></body></html>