Dan Sugalski <[EMAIL PROTECTED]> wrote: > While I want to keep the switch core, I'm still not seeing the need > for prederef with it. I'm presuming this crept in at some point and > just needs un-creeping?
Using prederef for switch has one advantage: it's a bit faster. Before the indirect register addressing it had another one: it took only 1/4th of code size because of the collapsing of constant and register variants into one switch case. There is of course no need to prederef the switched core. Maybe benchmarking the two variants yields a final answer. leo