1 /* PR middle-end/21850 */
2 
3 extern void abort (void);
4 
5 typedef int V2SI __attribute__ ((vector_size (8)));
6 
7 int
main(void)8 main (void)
9 {
10 #if (__INT_MAX__ == 2147483647) \
11     && (__LONG_LONG_MAX__ == 9223372036854775807LL)
12   if (((int)(long long)(V2SI){ 2, 2 }) != 2)
13     abort ();
14 #endif
15   return 0;
16 }
17