]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.target/arm/mve/intrinsics/vcvtaq_s32_f32.c
[ARM][GCC][3/1x]: MVE intrinsics with unary operand.
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / vcvtaq_s32_f32.c
1 /* { dg-do compile } */
2 /* { dg-require-effective-target arm_v8_1m_mve_fp_ok } */
3 /* { dg-add-options arm_v8_1m_mve_fp } */
4 /* { dg-additional-options "-O2" } */
5
6 #include "arm_mve.h"
7
8 int32x4_t
9 foo (float32x4_t a)
10 {
11 return vcvtaq_s32_f32 (a);
12 }
13
14 /* { dg-final { scan-assembler "vcvta.s32.f32" } } */