(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
acle/
crc_hf_1.c
       1  /* Test that using an Armv8-a hard-float target doesn't
       2     break CRC intrinsics.  */
       3  
       4  /* { dg-do compile } */
       5  /* { dg-require-effective-target arm_hard_vfp_ok }  */
       6  /* { dg-additional-options "-mfloat-abi=hard -march=armv8-a+simd+crc" } */
       7  
       8  #include <arm_acle.h>
       9  
      10  uint32_t
      11  foo (uint32_t a, uint32_t b)
      12  {
      13    return __crc32cw (a, b);
      14  }