1  /* { dg-do compile } */
       2  /* { dg-options "-O0" } */
       3  
       4  #include "arm_neon.h"
       5  
       6  float64_t
       7  wrap_vmuld_lane_f64 (float64_t a, float64x1_t b)
       8  {
       9    return vmuld_lane_f64 (a, b, 0);
      10  }
      11  
      12  float64_t
      13  wrap_vmuld_laneq_f64 (float64_t a, float64x2_t b)
      14  {
      15    return vmuld_laneq_f64 (a, b, 0);
      16  }
      17  
      18  float32_t
      19  wrap_vmuls_lane_f32 (float32_t a, float32x2_t b)
      20  {
      21    return vmuls_lane_f32 (a, b, 0);
      22  }
      23  
      24  float32_t
      25  wrap_vmuls_laneq_f32 (float32_t a, float32x4_t b)
      26  {
      27    return vmuls_laneq_f32 (a, b, 0);
      28  }