This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
Quadratic behaviour? How? I'm suggesting that instead ofIf the state of the mark would be undefined, you would need either to clean them up first (over whole cfg), or use bitmaps for the marks. Both of these approaches bring a risk of quadratic behavior.
my_pass ()
{
my_pass_code ();
FOR_ALL_BB (bb)
bb->flags &= ~BB_VISITED;
}my_pass ()
{
FOR_ALL_BB (bb)
bb->flags &= ~BB_VISITED;
my_pass_code ();
}| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |