(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr47502-2.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -fno-pic" } */
       3  
       4  int
       5  foo (int how, const void *set, void *oset)
       6  {
       7    int resultvar;
       8    asm volatile (""
       9                  : "=a" (resultvar)
      10                  : "0" (14) , "b" (how), "c" ((set)), "d" ((oset)), "S" (65 / 8) : "memory", "cc");
      11    return resultvar;
      12  }