mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 04:32:19 +00:00
Use external df iterators to avoid revisiting blocks in functions with
multiple setjmp calls. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9093 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1e79609e30
commit
46e033d28d
@ -137,7 +137,9 @@ bool LowerSetJmp::run(Module& M)
|
||||
for (Value::use_iterator B = SetJmp->use_begin(), E = SetJmp->use_end();
|
||||
B != E; ++B) {
|
||||
BasicBlock* BB = cast<Instruction>(*B)->getParent();
|
||||
DFSBlocks.insert(df_begin(BB), df_end(BB));
|
||||
for (df_ext_iterator<BasicBlock*> I = df_ext_begin(BB, BBSet),
|
||||
E = df_ext_end(BB, BBSet); I != E; ++I)
|
||||
/* empty */;
|
||||
}
|
||||
|
||||
while (!SetJmp->use_empty()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user