(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr104786.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-std=gnu90" } */
       3  
       4  void h(void *di, int num)
       5  {
       6    char (*t)[num] = di;
       7    __asm__ ("" : "=X"( *t));
       8  }