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 ipa/78268] [7 Regression] internal compiler error: Segmentation fault


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |marxin at gcc dot gnu.org

--- Comment #9 from Martin Liška <marxin at gcc dot gnu.org> ---
There's a C test-case:

int a;
void (*b) ();
void fn1 ();
void
fn2 (int p1)
{
  fn1 (-p1);
}
void
fn1 (int p1)
{
  if (a)
    b (p1);
}

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