blob: 2139972ce8b02f59b95d7b38d7e243a2f9681ca6 [file] [log] [blame]
/* { dg-options "-DEMPTY" } */
/* This file is only needed in combination with ic-misattribution-1.c
but there's no easy way to make this file ignored. */
extern void callee (void);
extern void caller (void (*func) (void));
typedef void (*func_t) (void);
func_t func;
int
main ()
{
#ifdef EMPTY
#else
func = callee;
caller (callee);
func ();
#endif
return 0;
}
/* { dg-final-use { cleanup-tree-dump "tree_profile" } } */