https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68619
mwahab at gcc dot gnu.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |mwahab at gcc dot gnu.org
--- Comment #8 from mwahab at gcc dot gnu.org ---
(In reply to Jeffrey A. Law from comment #6)
> Fixed on trunk.
The new test case pr68619-4.c is failing for arm-none-eabi because it triggers
the error
----
pr68619-4.c:42:17: error: width of 'code' exceeds its type
enum rtx_code code:16;
----
For arm-none-eabi, the rtx_code enum is being represented in 8-bits.
so 'enum rtx_code code:8;' compiles without the error.
Matthew