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 rtl-optimization/51271] ICE in in maybe_record_trace_start, at dwarf2cfi.c:2244


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

--- Comment #1 from vries at gcc dot gnu.org 2011-11-23 01:18:18 UTC ---
minimal compile line:
...
$ mips64el-linux-gnu-gcc -O2 -g res_hconf.c
...

minimal example res_hconf.c:
...
extern __thread int *__libc_tsd_CTYPE_B;

int *
skip_string (int *str)
{
  while (*str
         && __libc_tsd_CTYPE_B[*str]
         && *str != ',')
    ++str;
  return str;
}
...


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