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:
0adede0
)
Undo a wrong bit in that last patch.
author
Gordon Henriksen
<gordonhenriksen@mac.com>
Sat, 22 Dec 2007 23:34:26 +0000
(23:34 +0000)
committer
Gordon Henriksen
<gordonhenriksen@mac.com>
Sat, 22 Dec 2007 23:34:26 +0000
(23:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45327
91177308
-0d34-0410-b5e6-
96231b3b80d8
docs/GarbageCollection.html
patch
|
blob
|
history
diff --git
a/docs/GarbageCollection.html
b/docs/GarbageCollection.html
index c9324859ba9457b23f24df9a2f3f00f609959246..0e97f0234a548a7bf59e846097a781d0fc94efab 100644
(file)
--- a/
docs/GarbageCollection.html
+++ b/
docs/GarbageCollection.html
@@
-1094,8
+1094,8
@@
bool MyCollector::performCustomLowering(Function &F) {
bool MadeChange = false;
for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
- for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E;
++II
)
- if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(II))
+ for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; )
+ if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(II
++
))
if (Function *F = CI->getCalledFunction())
switch (F->getIntrinsicID()) {
case Intrinsic::gcwrite: