summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/optim.stp
blob: 6ca722a6361a333e337ca0238e09610e668fcafe (plain)
1
2
3
4
5
6
7
8
9
global array
function func(i) {
        array[i++] = 0;
        return i;
}
probe begin {
  printf ("i=%d\n", func(0))
  exit ()
}