/* PR 12281 The darwin back-end was causing the function f is not being emitted. TREE_SYMBOL_REFERENCED was being set instead of calling mark_referenced. */staticvoidf(void);voidg(void(*x)(void)){x();}staticinlinevoidf(void){}voidh(){g(f);}intmain(){h();return0;}