projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae16641
)
Fix syntax of iterate_complex example. Noticed by Martin!
author
Eric Christopher
<echristo@apple.com>
Sat, 8 Nov 2008 08:20:49 +0000
(08:20 +0000)
committer
Eric Christopher
<echristo@apple.com>
Sat, 8 Nov 2008 08:20:49 +0000
(08:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58900
91177308
-0d34-0410-b5e6-
96231b3b80d8
docs/ProgrammersManual.html
patch
|
blob
|
history
diff --git
a/docs/ProgrammersManual.html
b/docs/ProgrammersManual.html
index e859098d1546e276bfbe3e9a6692640af539ddf7..e7e4ce861547011959895ac474bf4f4044b6be3a 100644
(file)
--- a/
docs/ProgrammersManual.html
+++ b/
docs/ProgrammersManual.html
@@
-1614,7
+1614,7
@@
class OurFunctionPass : public FunctionPass {
virtual runOnFunction(Function& F) {
for (Function::iterator b = F.begin(), be = F.end(); b != be; ++b) {
- for (BasicBlock::iterator i = b->begin()
;
ie = b->end(); i != ie; ++i) {
+ for (BasicBlock::iterator i = b->begin()
,
ie = b->end(); i != ie; ++i) {
if (<a href="#CallInst">CallInst</a>* callInst = <a href="#isa">dyn_cast</a><<a
href="#CallInst">CallInst</a>>(&*i)) {
// <i>We know we've encountered a call instruction, so we</i>