view gcc/testsuite/gcc.target/arm/acle/crc32cd.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Test the crc32cd ACLE intrinsic.  */

/* { dg-do assemble } */
/* { dg-require-effective-target arm_crc_ok } */
/* { dg-options "-save-temps -O0" } */
/* { dg-add-options arm_crc } */

#include "arm_acle.h"

void test_crc32cd (void)
{
  uint32_t out_uint32_t;
  uint32_t arg0_uint32_t;
  uint64_t arg1_uint64_t;

  out_uint32_t = __crc32cd (arg0_uint32_t, arg1_uint64_t);
}

/* { dg-final { scan-assembler-times "crc32cw\t...?, ...?, ...?\n" 2 } } */