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]
Other format: [Raw text]

[Bug tree-optimization/24307] [4.1 regression] ICE in early_tree_profile



------- 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


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