aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/libmudflap/testsuite/libmudflap.c/pass48-frag.c
blob: 3059762a82c31222eb4df6f0063248d892fe60d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
void foo (int k)
{
  volatile int *b = & k;
  *b = 5;
}

int main ()
{
  foo (5);
  return 0;
}