blob: dd7977ac0f9e3ef4f93788e214e6c953a34a2f74 [file] [log] [blame]
// { dg-do compile }
// { dg-options "-O2 -w" }
#include <stdint.h>
uint8_t a;
b(int8_t c) {
int d;
e:
uint32_t f;
for (;;)
for (c = 10; c; c++)
if (0 > (a = c) ?: d) {
f = a;
goto e;
}
}