(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
pr79145.c
       1  /* { dg-do compile } */
       2  /* { dg-skip-if "Test is specific to the iWMMXt" { arm*-*-* } { "-mcpu=*" } { "-mcpu=iwmmxt" } } */
       3  /* { dg-skip-if "Test is specific to the iWMMXt" { arm*-*-* } { "-mabi=*" } { "-mabi=iwmmxt" } } */
       4  /* { dg-skip-if "Test is specific to the iWMMXt" { arm*-*-* } { "-march=*" } { "-march=iwmmxt" } } */
       5  /* { dg-skip-if "Test is specific to ARM mode" { arm*-*-* } { "-mthumb" } { "" } } */
       6  /* { dg-require-effective-target arm32 } */
       7  /* { dg-require-effective-target arm_iwmmxt_ok } */
       8  /* { dg-options "-mcpu=iwmmxt" } */
       9  
      10  int
      11  main (void)
      12  {
      13    volatile long long t1;
      14    t1 ^= 0x55;
      15    return 0;
      16  }