]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/gnu_vector.c
Update year range in copyright notice of all files owned by the GDB project.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / gnu_vector.c
CommitLineData
7346b668
KW
1/* This testcase is part of GDB, the GNU debugger.
2
32d0add0 3 Copyright 2010-2015 Free Software Foundation, Inc.
7346b668
KW
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 Contributed by Ken Werner <ken.werner@de.ibm.com> */
19
3bdf2bbd
KW
20typedef int __attribute__ ((vector_size (4 * sizeof(int)))) int4;
21typedef unsigned int __attribute__ ((vector_size (4 * sizeof(unsigned int)))) uint4;
22typedef char __attribute__ ((vector_size (4 * sizeof(char)))) char4;
23typedef float __attribute__ ((vector_size (4 * sizeof(float)))) float4;
24
25typedef int __attribute__ ((vector_size (2 * sizeof(int)))) int2;
26typedef long long __attribute__ ((vector_size (2 * sizeof(long long)))) longlong2;
27typedef float __attribute__ ((vector_size (2 * sizeof(float)))) float2;
28typedef double __attribute__ ((vector_size (2 * sizeof(double)))) double2;
29
30int ia = 2;
31int ib = 1;
32float fa = 2;
33float fb = 1;
8954db33 34long long lla __attribute__ ((mode(DI))) = 0x0000000100000001ll;
3bdf2bbd
KW
35char4 c4 = {1, 2, 3, 4};
36int4 i4a = {2, 4, 8, 16};
37int4 i4b = {1, 2, 8, 4};
38float4 f4a = {2, 4, 8, 16};
39float4 f4b = {1, 2, 8, 4};
40uint4 ui4 = {2, 4, 8, 16};
41int2 i2 = {1, 2};
42longlong2 ll2 = {1, 2};
43float2 f2 = {1, 2};
44double2 d2 = {1, 2};
7346b668 45
2f27adfe
AB
46union
47{
48 int i;
49 char cv __attribute__ ((vector_size (sizeof (int))));
50} union_with_vector_1;
51
52struct
53{
54 int i;
55 char cv __attribute__ ((vector_size (sizeof (int))));
56 float4 f4;
57} struct_with_vector_1;
58
7346b668
KW
59int
60main ()
61{
62 return 0;
63}