1/* This testcase is part of GDB, the GNU debugger.
2
3   Copyright 2010, 2011 Free Software Foundation, Inc.
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
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;
34char4 c4 = {1, 2, 3, 4};
35int4 i4a = {2, 4, 8, 16};
36int4 i4b = {1, 2, 8, 4};
37float4 f4a = {2, 4, 8, 16};
38float4 f4b = {1, 2, 8, 4};
39uint4 ui4 = {2, 4, 8, 16};
40int2 i2 = {1, 2};
41longlong2 ll2 = {1, 2};
42float2 f2 = {1, 2};
43double2 d2 = {1, 2};
44
45int
46main ()
47{
48  return 0;
49}
50