blob: 03f669eb8416cf890558ef88b4751ae608e648f2 [file] [log] [blame]
Amara Emerson2440fb12013-09-16 18:07:35 +00001// RUN: %clang_cc1 %s -triple armv7 -target-feature +neon -fsyntax-only -verify
2// RUN: %clang_cc1 %s -triple armv8 -target-feature +neon -fsyntax-only -verify
Bob Wilson541b9942010-11-16 00:32:28 +00003
4typedef float float32_t;
5typedef signed char poly8_t;
6typedef short poly16_t;
Stephen Hines651f13c2014-04-23 16:59:28 -07007typedef unsigned __INT64_TYPE__ uint64_t;
Bob Wilson541b9942010-11-16 00:32:28 +00008
9// Define some valid Neon types.
10typedef __attribute__((neon_vector_type(2))) int int32x2_t;
11typedef __attribute__((neon_vector_type(4))) int int32x4_t;
12typedef __attribute__((neon_vector_type(1))) uint64_t uint64x1_t;
13typedef __attribute__((neon_vector_type(2))) uint64_t uint64x2_t;
14typedef __attribute__((neon_vector_type(2))) float32_t float32x2_t;
15typedef __attribute__((neon_vector_type(4))) float32_t float32x4_t;
16typedef __attribute__((neon_polyvector_type(16))) poly8_t poly8x16_t;
17typedef __attribute__((neon_polyvector_type(8))) poly16_t poly16x8_t;
18
19// The attributes must have a single argument.
Aaron Ballmanbaec7782013-07-23 19:30:11 +000020typedef __attribute__((neon_vector_type(2, 4))) int only_one_arg; // expected-error{{'neon_vector_type' attribute takes one argument}}
Bob Wilson541b9942010-11-16 00:32:28 +000021
22// The number of elements must be an ICE.
Aaron Ballman9f939f72013-07-30 14:10:17 +000023typedef __attribute__((neon_vector_type(2.0))) int non_int_width; // expected-error{{'neon_vector_type' attribute requires an integer constant}}
Bob Wilson541b9942010-11-16 00:32:28 +000024
25// Only certain element types are allowed.
Bob Wilson541b9942010-11-16 00:32:28 +000026typedef __attribute__((neon_vector_type(4))) void* ptr_elt; // expected-error{{invalid vector element type}}
27typedef __attribute__((neon_polyvector_type(4))) float32_t bad_poly_elt; // expected-error{{invalid vector element type}}
28struct aggr { signed char c; };
29typedef __attribute__((neon_vector_type(8))) struct aggr aggregate_elt; // expected-error{{invalid vector element type}}
30
31// The total vector size must be 64 or 128 bits.
32typedef __attribute__((neon_vector_type(1))) int int32x1_t; // expected-error{{Neon vector size must be 64 or 128 bits}}
33typedef __attribute__((neon_vector_type(3))) int int32x3_t; // expected-error{{Neon vector size must be 64 or 128 bits}}