summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/eleven.stp
blob: 66d4a318d31bd312a08959e32619badc2087a59c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! stap -p4

probe begin
{
  a = -1 / -1;
  b = 2147483647;
  c = 4294967295 / a;
  d = (-2147483647-1) % c;
  e = 9223372036854775807 * b;
  d /= b % e;
  b %= 0 / f;
  x = 1 / 0;
}
probe end
{
  y %= 0;
}