(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arc/
mswape.c
       1  /* { dg-options "-mswape" } */
       2  /* { dg-do assemble } */
       3  /* { dg-skip-if "" { arc6xx } } */
       4  
       5  int f (int i)
       6  {
       7    __asm__("swape %1, %1" : "=r"(i) : "r"(i));
       8    return i;
       9  }