aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/acle/crc32h.c
blob: 67a89167430e75ab3c9d5fdc9eb565419e4f9a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Test the crc32h 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_crc32h (void)
{
  uint32_t out_uint32_t;
  uint32_t arg0_uint32_t;
  uint16_t arg1_uint16_t;

  out_uint32_t = __crc32h (arg0_uint32_t, arg1_uint16_t);
}

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