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 target/15836] ICE in genmodes.c:746 (-fprofile-generate)


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-06-05 19:22 -------
Here is my small testcase without loops (but with gotos):
void t();
void t1 ()
{
  int c = 0;
  goto lc;
lb: if (c != 0) {t();}
lc: if ((c+=1) <= 9) goto lb;
}

-- 


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


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