(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
symbian3.c
       1  /* { dg-do compile { target arm*-*-symbianelf* } } */
       2  /* Check that enumeration types are 4-byte types.  */
       3  
       4  enum e { e_1 };
       5  
       6  extern int i[sizeof (enum e)];
       7  int i[4];