2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / acle / crc32cw.c
blob9eeee7345d7c46e63a7b4c40707eb231ded3f011
1 /* Test the crc32cw ACLE intrinsic. */
3 /* { dg-do assemble } */
4 /* { dg-options "-save-temps -O2 -march=armv8-a+crc" } */
6 #include "arm_acle.h"
8 uint32_t
9 test_crc32cw (uint32_t arg0, uint32_t arg1)
11 return __crc32cw (arg0, arg1);
14 /* { dg-final { scan-assembler "crc32cw\tw..?, w..?, w..?\n" } } */