summaryrefslogtreecommitdiff
path: root/test/Sema/arm64-neon-header.c
blob: 0ae082113a5757c83c99d83b85ec508f04b886f2 (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -triple arm64-apple-darwin -target-feature +neon -Wvector-conversion -fsyntax-only -ffreestanding -verify %s

#include <arm_neon.h>

int16x8_t foo(int8x8_t p0, int16x8_t p1) {
  return vqmovun_high_s16(p0, p1); // expected-warning {{incompatible vector types returning 'uint8x16_t'}}
}