rt_gccstream/libmudflap/testsuite/libmudflap.c/pass48-frag.c

12 lines
96 B
C

void foo (int k)
{
volatile int *b = & k;
*b = 5;
}
int main ()
{
foo (5);
return 0;
}