PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20050607-1.c
blob41579bbba5efcd6a78f3720b15dfa84903af2833
1 /* PR middle-end/21850 */
3 extern void abort (void);
5 typedef int V2SI __attribute__ ((vector_size (8)));
7 int
8 main (void)
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;