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]

[tree-ssa] -fdisable-gimple


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]