Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / Sema / arm-neon-types.c
blob152d4c9b9a7829f99d2b7bc146e63e220f48922d
1 // RUN: %clang_cc1 -triple thumbv7-apple-darwin10 -target-cpu cortex-a8 -fsyntax-only -Wvector-conversions -ffreestanding -verify %s
3 #include <arm_neon.h>
5 // Radar 8228022: Should not report incompatible vector types.
6 int32x2_t test(int32x2_t x) {
7 return vshr_n_s32(x, 31);
10 // ...but should warn when the types really do not match.
11 float32x2_t test2(uint32x2_t x) {
12 return vcvt_n_f32_s32(x, 0); // expected-warning {{incompatible vector types}}