------- Additional Comments From pinskia at gcc dot gnu dot org  2005-09-03 
03:29 -------
Here is the reduced testcase:
void run (void) {
  float stack[1];
  float *sp = stack;
  try
  {
    float value2 = ((float) *(--sp));
    float value1 = ((float) *(--sp));
    *(sp++) = (value1 - value2);
  }
  catch (int *ex)
  {
  }
}


-- 


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

Reply via email to