This is the mail archive of the gcc-patches@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]

Re: [PATCH] Conditionally turn off cfg cleanup for PHI-OPT if nothing is done


Instead of doing

   if (something_happened)
     cleanup_cfg ()

everywhere, why not we do

cleanup_cfg ()
{
   if (nothing_happened)
     return ;
   ....
}

?
-
Devang


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