[tree-ssa] -fdisable-gimple

Jeff Sturm jsturm@one-point.com
Fri Oct 3 13:21:00 GMT 2003


How important is it that the branch continue to support -fdisable-gimple?
For C or all frontends?

I see that Java has been completely broken with -fdisable-gimple for some
time.  The flag gets no routine testing, making it worse than useless IMO.

More urgently, I don't think we can do tree_rest_of_compilation in any
sane fashion without resorting to

void
java_expand_body (tree fndecl)
{
  if (! flag_disable_gimple)
    tree_rest_of_compilation (fndecl);
  else
    {
      /* ... preserve all old cruft here ... */
    }
}

Jeff



More information about the Gcc mailing list