blob: 8b0dc9288ee0cb6c4dbc67ca031451f329b3db3e [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -verify -fsyntax-only -Wvector-conversions
Anders Carlsson695dbb62007-11-30 04:21:22 +00002typedef unsigned int v2u __attribute__ ((vector_size (8)));
3typedef signed int v2s __attribute__ ((vector_size (8)));
4typedef signed int v1s __attribute__ ((vector_size (4)));
5typedef float v2f __attribute__ ((vector_size(8)));
6typedef signed short v4ss __attribute__ ((vector_size (8)));
7
Chris Lattner6a2b9262009-10-17 20:33:28 +00008void test1() {
Anders Carlsson695dbb62007-11-30 04:21:22 +00009 v2s v1;
10 v2u v2;
11 v1s v3;
12 v2f v4;
13 v4ss v5;
14
Douglas Gregord4eea832010-04-09 00:35:39 +000015 v1 = v2; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v2u'}}
16 v1 = v3; // expected-error {{assigning to 'v2s' from incompatible type 'v1s'}}
17 v1 = v4; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v2f'}}
18 v1 = v5; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v4ss'}}
Anders Carlsson695dbb62007-11-30 04:21:22 +000019
Douglas Gregord4eea832010-04-09 00:35:39 +000020 v2 = v1; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v2s'}}
21 v2 = v3; // expected-error {{assigning to 'v2u' from incompatible type 'v1s'}}
22 v2 = v4; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v2f'}}
23 v2 = v5; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v4ss'}}
Anders Carlsson695dbb62007-11-30 04:21:22 +000024
Douglas Gregord4eea832010-04-09 00:35:39 +000025 v3 = v1; // expected-error {{assigning to 'v1s' from incompatible type 'v2s'}}
26 v3 = v2; // expected-error {{assigning to 'v1s' from incompatible type 'v2u'}}
27 v3 = v4; // expected-error {{assigning to 'v1s' from incompatible type 'v2f'}}
28 v3 = v5; // expected-error {{assigning to 'v1s' from incompatible type 'v4ss'}}
Anders Carlsson695dbb62007-11-30 04:21:22 +000029
Douglas Gregord4eea832010-04-09 00:35:39 +000030 v4 = v1; // expected-warning {{incompatible vector types assigning to 'v2f' from 'v2s'}}
31 v4 = v2; // expected-warning {{incompatible vector types assigning to 'v2f' from 'v2u'}}
32 v4 = v3; // expected-error {{assigning to 'v2f' from incompatible type 'v1s'}}
33 v4 = v5; // expected-warning {{incompatible vector types assigning to 'v2f' from 'v4ss'}}
Anders Carlsson695dbb62007-11-30 04:21:22 +000034
Douglas Gregord4eea832010-04-09 00:35:39 +000035 v5 = v1; // expected-warning {{incompatible vector types assigning to 'v4ss' from 'v2s'}}
36 v5 = v2; // expected-warning {{incompatible vector types assigning to 'v4ss' from 'v2u'}}
37 v5 = v3; // expected-error {{assigning to 'v4ss' from incompatible type 'v1s'}}
38 v5 = v4; // expected-warning {{incompatible vector types assigning to 'v4ss' from 'v2f'}}
Anders Carlsson695dbb62007-11-30 04:21:22 +000039}
Chris Lattnera989def2008-05-12 18:31:17 +000040
41// PR2263
Chris Lattner6a2b9262009-10-17 20:33:28 +000042float test2(__attribute__((vector_size(16))) float a, int b) {
Chris Lattnera989def2008-05-12 18:31:17 +000043 return a[b];
44}
45
Chris Lattner6a2b9262009-10-17 20:33:28 +000046// PR4838
47typedef long long __attribute__((__vector_size__(2 * sizeof(long long))))
48longlongvec;
49
Douglas Gregora41a8c52010-04-22 00:20:18 +000050void test3a(longlongvec *); // expected-note{{passing argument to parameter here}}
Chris Lattner6a2b9262009-10-17 20:33:28 +000051void test3(const unsigned *src) {
Chris Lattner58f9e132010-09-05 00:04:01 +000052 test3a(src); // expected-warning {{incompatible pointer types passing 'const unsigned int *' to parameter of type 'longlongvec *'}}
Chris Lattner6a2b9262009-10-17 20:33:28 +000053}