/* { dg-require-effective-target arm_v8_1m_mve_ok } */
/* { dg-add-options arm_v8_1m_mve } */
/* { dg-additional-options "-O2" } */

#include "arm_mve.h"

mve_pred16_t
foo (int8x16_t a, int8_t b)
{
  return vcmpleq_n_s8 (a, b);
}

/* { dg-final { scan-assembler "vcmp.s8"  }  } */

mve_pred16_t
foo1 (int8x16_t a, int8_t b)
{
  return vcmpleq (a, b);
}

/* { dg-final { scan-assembler "vcmp.s8"  }  } */
