blob: 672b93a97475fd7caec67611cf074b32fe2d6860 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target arm_crypto_ok } */
/* { dg-add-options arm_crypto } */
#include "arm_neon.h"
int
foo (void)
{
uint32_t hash = 0xdeadbeef;
uint32x4_t a = {0, 1, 2, 3};
uint32x4_t b = {3, 2, 1, 0};
uint32x4_t res = vsha1mq_u32 (a, hash, b);
return res[0];
}
/* { dg-final { scan-assembler "sha1m.32\tq\[0-9\]+, q\[0-9\]+" } } */