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

Re: Bad DONE/FAIL usage in config/sh/sh.md


  In message <199804080917.CAA09558@netcom8.netcom.com>you write:
  > There's some bad usage of DONE/FAIL in config/sh/sh.md:
  > 
  >   if(expand_block_move (operands))
  >      DONE;
  >   else FAIL;
  > 
  > This expands out to:
  > 
  >   if(expand_block_move (operands))
  >   { ... } ;                        <- note floating semicolon
  >   else { ... } ;                   <- note floating semicolon
The bug is in genemit and has already been fixed.

jeff


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