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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|ICE in meet_with_1, at      |[14 Regression] ICE in
                   |ipa-cp.cc:1057              |meet_with_1, at
                   |                            |ipa-cp.cc:1057
   Target Milestone|---                         |14.0
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2023-07-20
             Status|UNCONFIRMED                 |NEW

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.

Slightly less undefined code:
```
int a, b, c;
static int d(long e, long f) { return f == 0 || e && f == 1 ?: f; }
int g(void) {static int t; return t;}
static int h(long e) {
  b = e - 1;
  a = d(b || d(e, 8), g());
}
int tt;
void i(void) {
  c = (__SIZE_TYPE__)&tt;
  h(c);
}
//int main() {}
```

Reply via email to