blob: f4afcb5c76d2022cd22e0acd3674bcb57642c37e [file] [log] [blame]
/* depends on NoDepE */
void NoDepE_func(void);
void NoDepF_func(void)
{
static int firstcall = 1;
if (firstcall) {
firstcall = 0;
NoDepE_func();
}
}