1  /* Test the vfms_f64 AArch64 SIMD intrinsic.  */
       2  
       3  /* { dg-do run } */
       4  /* { dg-options "-save-temps -O3" } */
       5  
       6  #include "arm_neon.h"
       7  
       8  #define EPS 1.0e-15
       9  
      10  extern void abort (void);
      11  
      12  float64_t __attribute__((noipa))
      13  test_vfms (float64x1_t arg1, float64x1_t arg2, float64x1_t arg3)
      14  {
      15    return vget_lane_f64 (vfms_f64 (arg1, arg2, arg3), 0);
      16  }
      17  
      18  int
      19  main (void)
      20  {
      21    float64_t expected;
      22    float64_t actual;
      23  
      24    expected = 4.4964705746355915e-2;
      25    actual = test_vfms (vcreate_f64 (0x3fe730af8db9e6f7ULL),
      26  		      vcreate_f64 (0x3fe6b78680fa29ceULL),
      27  		      vcreate_f64 (0x3feea3cbf921fbe0ULL));
      28  
      29    if (__builtin_fabs (expected - actual) > EPS)
      30      abort ();
      31  
      32    return 0;
      33  }
      34  
      35  /* { dg-final { scan-assembler-times "fmsub\[ \t\]+\[dD\]\[0-9\]+, ?\[dD\]\[0-9\]+, ?\[dD\]\[0-9\]+, ?\[dD\]\[0-9\]+\n" 1 } } */