------- Comment #1 from pinskia at gcc dot gnu dot org  2005-10-11 13:44 -------
Confirmed, here is a C testcase:
struct a
{
  void *l;
  char *k;
};

void *f(struct a*, int len, char*);

void fgg(void)
{
  void * gotovar;
  struct a jmp[] = {{&&L1, ""}, {&&L2, "EEE"}, {&&L3, "T"}};
  gotovar = f(jmp, 3, "STEVEN");
  goto *gotovar;

  L1:
   __builtin_abort();
  L2:
   __builtin_abort();
L3:
  goto L4;

L4:
;

}


-- 

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         |2005-10-11 13:44:20
               date|                            |


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

Reply via email to