------- Comment #3 from pinskia at gcc dot gnu dot org  2007-06-06 23:04 -------
Reduced testcase, I cannot remove the inline function for some reason:
void f(char);
static inline
void * __memset_generic(char c)
{
  f(c);
}
int prepare_startup_playback_urb(
     int b,
     int c
)
{
  char d;
  if (b)
    __memset_generic(c == ( 1) ? 0x80 : 0);
  else
    __memset_generic (c == ( 1) ? 0x80 : 0);
}


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2007-06-06 23:04:14
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32169

Reply via email to