[Bug middle-end/93399] [8/9/10 Regression] Annotate assembler option failure

pinskia at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Thu Jan 23 13:46:00 GMT 2020


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93399

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
dwarf2out.c:27492 or so
in dwarf2out_var_location.

I think ...
Here is a reduced testcase without any headers:
extern __inline __attribute__ ((__always_inline__)) __attribute__
((__gnu_inline__)) char *
strstr (char *__haystack, const char *__needle) throw ()
{
  return __builtin_strstr (__haystack, __needle);
}

int main(int argc, char** argv) {
  char* substr = strstr(argv[0], "\n");
  char* another = strstr(argv[0], "\r\n");
  return 0;
}


More information about the Gcc-bugs mailing list