modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/20050607-1.c (about) 1 /* PR middle-end/21850 */ 2 3 extern void abort (void); 4 5 typedef int V2SI __attribute__ ((vector_size (8))); 6 7 int 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 }