summaryrefslogtreecommitdiffstats
path: root/testsuite/transok/five.stp
blob: 5cd50cb6d12ce016e1f3076ff009365c7a06c429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! stap

probe begin
{
  for (;;) ;
  for (a=0;;) { if (a > 4) break }
  for (;a>0;) { a + 5 }
  for (;;a=a+1) { a + 5 }
  for (a=0;a>0;) { if (a < 4) continue }
  for (;a>0;a=a+1) { a + 5 }
  for (a=0;;a=a+1) { a + 5 }
  for (a=0; a<=4; a=a+1) ;
  for (a=0; a<=4; a=a+1) { b = a }

  while (99) next
  while (99) {}
}