This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/81874] internal compiler error: in do_SUBST, at combine.c:725
- From: "marxin at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Thu, 17 Aug 2017 17:59:11 +0000
- Subject: [Bug target/81874] internal compiler error: in do_SUBST, at combine.c:725
- Auto-submitted: auto-generated
- References: <bug-81874-4@http.gcc.gnu.org/bugzilla/>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81874
--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
Reduced test-case:
int a, c;
int
d (int f, int g)
{
return g ?: f;
}
void
h ()
{
int b = a > 0 && 1 > 2147483647 - a, e = b;
c = d (++a, e);
}