annotate gcc/testsuite/gcc.dg/vmx/5-07t.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* { dg-do compile } */
kono
parents:
diff changeset
2 #include <altivec.h>
kono
parents:
diff changeset
3 typedef vector unsigned char t_u8;
kono
parents:
diff changeset
4 typedef vector signed char t_s8;
kono
parents:
diff changeset
5 typedef vector bool char t_b8;
kono
parents:
diff changeset
6 typedef vector unsigned short t_u16;
kono
parents:
diff changeset
7 typedef vector signed short t_s16;
kono
parents:
diff changeset
8 typedef vector bool short t_b16;
kono
parents:
diff changeset
9 typedef vector unsigned int t_u32;
kono
parents:
diff changeset
10 typedef vector signed int t_s32;
kono
parents:
diff changeset
11 typedef vector bool int t_b32;
kono
parents:
diff changeset
12 typedef vector float t_f32;
kono
parents:
diff changeset
13 typedef vector pixel t_p16;
kono
parents:
diff changeset
14
kono
parents:
diff changeset
15 t_u8 u8 = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1};
kono
parents:
diff changeset
16 t_s8 s8 = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1};
kono
parents:
diff changeset
17 t_b8 b8 = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1};
kono
parents:
diff changeset
18 t_u16 u16 = {1,1,1,1,1,1,1,1};
kono
parents:
diff changeset
19 t_s16 s16 = {1,1,1,1,1,1,1,1};
kono
parents:
diff changeset
20 t_b16 b16 = {1,1,1,1,1,1,1,1};
kono
parents:
diff changeset
21 t_u32 u32 = {1,1,1,1};
kono
parents:
diff changeset
22 t_s32 s32 = {1,1,1,1};
kono
parents:
diff changeset
23 t_b32 b32 = {1,1,1,1};
kono
parents:
diff changeset
24 t_f32 f32 = {1,1,1,1};
kono
parents:
diff changeset
25 t_p16 p16 = {1,1,1,1,1,1,1,1};
kono
parents:
diff changeset
26
kono
parents:
diff changeset
27 t_u8 u8_ = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16};
kono
parents:
diff changeset
28 t_s8 s8_ = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16};
kono
parents:
diff changeset
29 t_b8 b8_ = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16};
kono
parents:
diff changeset
30 t_u16 u16_ = {1,2,3,4,5,6,7,8};
kono
parents:
diff changeset
31 t_s16 s16_ = {1,2,3,4,5,6,7,8};
kono
parents:
diff changeset
32 t_b16 b16_ = {1,2,3,4,5,6,7,8};
kono
parents:
diff changeset
33 t_u32 u32_ = {1,2,3,4};
kono
parents:
diff changeset
34 t_s32 s32_ = {1,2,3,4};
kono
parents:
diff changeset
35 t_b32 b32_ = {1,2,3,4};
kono
parents:
diff changeset
36 t_f32 f32_ = {1,2,3,4};
kono
parents:
diff changeset
37 t_p16 p16_ = {1,2,3,4,5,6,7,8};