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

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) break
  while (99) continue
  while (99) {}
}