https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113699
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Last reconfirmed| |2024-02-01
Component|tree-optimization |middle-end
Keywords| |ice-on-valid-code
Ever confirmed|0 |1
Status|UNCONFIRMED |NEW
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
This happens with an uninitialized variable only.
Here is a valid code testcase:
```
void
foo (void)
{
_BitInt(129) i;
__asm__ ("": :"rm" (i));
}
```