OSDN Git Service

4bcb6e58b2a99ef8699dd00443550c67dc3fa763
[pf3gnuchains/pf3gnuchains4x.git] / gdb / testsuite / gdb.base / gnu_vector.c
1 /* This testcase is part of GDB, the GNU debugger.
2
3    Copyright 2010 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
20 char __attribute__ ((vector_size (4 * sizeof(char)))) c4 = {1, 2, 3, 4};
21 int __attribute__ ((vector_size (4 * sizeof(int)))) i4a = {2, 4, 8, 16};
22 int __attribute__ ((vector_size (4 * sizeof(int)))) i4b = {1, 2, 8, 4};
23 float __attribute__ ((vector_size (4 * sizeof(float)))) f4a = {2, 4, 8, 16};
24 float __attribute__ ((vector_size (4 * sizeof(float)))) f4b = {1, 2, 8, 4};
25 unsigned int __attribute__ ((vector_size (4 * sizeof(unsigned int)))) ui4 = {2, 4, 8, 16};
26 int __attribute__ ((vector_size (2 * sizeof(int)))) i2 = {1, 2};
27 long long __attribute__ ((vector_size (2 * sizeof(long long)))) ll2 = {1, 2};
28 float __attribute__ ((vector_size (2 * sizeof(float)))) f2 = {1, 2};
29 double __attribute__ ((vector_size (2 * sizeof(double)))) d2 = {1, 2};
30
31 int
32 main ()
33 {
34   return 0;
35 }