mve: Fix vsetq_lane for 64-bit elements with lane 1 [PR 115611]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr68528.c
blobd69d600f43bdeb46c5eb9b5067add6fa0390e502
1 /* { dg-do run } */
3 #define INT_MIN ( -__INT_MAX__ - 1 )
5 extern void abort (void);
7 int main (void)
9 int x0 = INT_MIN;
10 long x1 = 0L;
11 int x2 = 0;
12 int t = ( 0 || ( INT_MIN - (int) ( x0 - x1 ) ) );
14 if ( t != 0 ) { x2 = t; abort(); }
16 return 0;