blob: 2f1f7935d3cb985575a39b2ccc96516b85230155 [file] [log] [blame]
/* PR lto/49123 */
extern void abort (void);
static struct S { int f : 1; } s;
static int v = -1;
int
main ()
{
s.f = v < 0;
if ((unsigned int) s.f != -1U)
abort ();
return 0;
}