diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 548a6828c11..9d4f9615d40 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -22,10 +22,14 @@
in a Function
Iterating over the Instructions
in a BasicBlock
+ Iterating over the Instructions
+ in a Function
Turning an iterator into a class
pointer
Finding call sites: a more complex
example
+ Iterating over def-use & use-def
+ chains
Making simple changes
@@ -268,6 +272,19 @@ the pointer value you might expect. This is a deprecated interface that will
be removed in the future, so it's best not to depend on it. To print out the
pointer value for now, you must cast to void*.
+
+
@@ -328,11 +345,9 @@ better to explicitly grab the next instruction directly from inst.
iterators automatically convert to 'Class *' except in dyn_cast<> case
-->
-
Say that you're writing a FunctionPass and would like to count all the
locations in the entire module (that is, across every Function)
@@ -394,6 +409,17 @@ virtual runOnFunction(Function& F) {
We could then print out the value of callCounter (if we wanted to)
inside the doFinalization method of our FunctionPass.
+
+
+
|
@@ -1235,10 +1261,6 @@ pointer to the parent Function.
Chris Lattner
-<<<<<<< ProgrammersManual.html
-Last modified: Fri Sep 6 18:24:38 EDT 2002
-=======
-Last modified: Fri Sep 6 18:03:31 EDT 2002
->>>>>>> 1.10
+Last modified: Mon Sep 9 00:48:53 CDT 2002
|