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/55277] [4.8 regression] ICE in assign_by_spills, at lra-assigns.c:1217


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

Antoine Balestrat <antoine.balestrat at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |antoine.balestrat at gmail
                   |                            |dot com

--- Comment #1 from Antoine Balestrat <antoine.balestrat at gmail dot com> 2012-11-24 22:20:46 UTC ---
I've got a simpler testcase that seems to trigger the same ICE, if this is of
any help.

$ cat lra.c
int a, c;

void f(long long p)
{
    long long b;

    if(b)
        b = p ? : 0;

    for (; p; p++)
        p *= a & (c = p *= !a < 2);

    a = b += !(b & 3740917449);
}

$ xgcc -O1 -m32 -w lra.c
lra.c: In function âfâ:
lra.c:14:1: internal compiler error: in assign_by_spills, at lra-assigns.c:1217
 }
 ^
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.


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