void test_vorrs8 (void)
{
  int8x8_t out_int8x8_t;
  int8x8_t arg0_int8x8_t;
  int8x8_t arg1_int8x8_t;

  out_int8x8_t = vorr_s8 (arg0_int8x8_t, arg1_int8x8_t);
}
Esempio n. 2
0
int8x8_t test_vorr_s8(int8x8_t a, int8x8_t b) {
  // CHECK-LABEL: test_vorr_s8
  return vorr_s8(a, b);
  // CHECK: orr {{v[0-9]+}}.8b, {{v[0-9]+}}.8b, {{v[0-9]+}}.8b
}