(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr91528.c
       1  /* PR target/91528 */
       2  /* { dg-do compile { target ia32 } } */
       3  /* { dg-options "-Os -mavx512vbmi2 -mforce-drap" } */
       4  
       5  extern long int labs (long int j);
       6  
       7  int
       8  main ()
       9  {
      10    long *a = (long *)"empty";
      11    int i = 1441516387;
      12    a[i] = labs (a[i]);
      13    return 0;
      14  }