Index: SingleSource/Regression/C/gcc-c-torture/execute/pr19687.c =================================================================== --- SingleSource/Regression/C/gcc-c-torture/execute/pr19687.c +++ SingleSource/Regression/C/gcc-c-torture/execute/pr19687.c @@ -10,9 +10,8 @@ union U t = {}; int i; - for (i = 0; i < 4; ++i) - if (t.j[i] != 0) - abort (); + if (t.j[0] != 0) + abort (); return 0; }