(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr37713.c
       1  void add_opush(void)
       2  {
       3      unsigned char formats[] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0xff };
       4      void *dtds[sizeof(formats)];
       5      unsigned int i;
       6      unsigned char dtd = 0x08;
       7      for (i = 0; i < sizeof(formats); i++)
       8  	dtds[i] = &dtd;
       9      sdp_seq_alloc(dtds);
      10  }