1 extern void abort (void);
3 typedef int V2SI
__attribute__ ((vector_size (8)));
4 typedef unsigned int V2USI
__attribute__ ((vector_size (8)));
5 typedef short V2HI
__attribute__ ((vector_size (4)));
6 typedef unsigned int V2UHI
__attribute__ ((vector_size (4)));
11 return (V2USI
) (V2SI
) (long long) x
;
17 return (long long) (V2USI
) (V2SI
) (long long) x
;
23 if (sizeof (short) != 2 || sizeof (int) != 4 || sizeof (long long) != 8)
26 union { V2SI x
; int y
[2]; V2USI z
; long long l
; } u
;
29 if (u
.y
[0] != -3 || u
.y
[1] != -3)
33 if (u
.y
[0] != -3 || u
.y
[1] != -3)