aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/acle/crc32cd.c
blob: cb7ee0df0a9d3bfba789e9afa74e5fa6e8be866d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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 } } */
/* { dg-final { cleanup-saved-temps } } */