(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
xsave64-1.c
       1  /* { dg-do compile { target { ! ia32 } } } */
       2  /* { dg-options "-mxsave -O2" } */
       3  /* { dg-final { scan-assembler "xsave64\[ \\t\]" } } */
       4  
       5  #include <x86intrin.h>
       6  
       7  void extern
       8  xsave_test (void)
       9  {
      10    char xsave_region [512] __attribute__((aligned(64)));
      11    _xsave64 (xsave_region, ((long long) 0xA0000000F));
      12  }