[Bug rtl-optimization/86064] [8 Regression] compiling Linux kernel: Error: can't resolve `.text.unlikely' {.text.unlikely section} - `.LVL43x' {.text section}

marxin at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Wed Jun 6 10:59:00 GMT 2018


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

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|needs-reduction             |

--- Comment #4 from Martin Liška <marxin at gcc dot gnu.org> ---
Reduced test-case:

$ cat pr86064.i
int a;
__attribute__((__cold__)) void b();

void e(int *);
int f();

void c() {
  int d;
  e(&d);
  a = d;
  if (f())
    b();
}


More information about the Gcc-bugs mailing list