tcc-65816/test/not_applicable/20050607-1.c
2017-06-09 13:52:12 +02:00

17 lines
291 B
C

/* PR middle-end/21850 */
extern void abort (void);
typedef int V2SI __attribute__ ((vector_size (8)));
int
main (void)
{
#if (__INT_MAX__ == 2147483647) \
&& (__LONG_LONG_MAX__ == 9223372036854775807LL)
if (((int)(long long)(V2SI){ 2, 2 }) != 2)
abort ();
#endif
return 0;
}