diff options
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r-- | docs/ProgrammersManual.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 28a5079385..93ee0f3f26 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -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->use_begin(), e = F->use_end(); i != e; ++i) { - if(Instruction* i = dyn_cast<Instruction>(*i)) { - cerr << "F is used in instruction:\n\t"; - cerr << *i << "\n"; + if(Instruction* Inst = dyn_cast<Instruction>(*i)) { + cerr << "F is used in instruction:\n"; + cerr << *Inst << "\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> |