blob: f78acffb9eb5dfac2e20db3da5419d287183ad3b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* Large to get different layouts. */
char mod6_data[4096];
void
mod6_function (void (*f) (void))
{
/* Make sure this is not a tail call and unwind information is
therefore needed. */
f ();
f ();
}
|