summaryrefslogtreecommitdiffstats
path: root/testsuite/parseok/six.stp
blob: 5c3d78668f2233a0caa942258789b4bca0d42aa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! stap -p1

probe nothing
{
  a = 1+01+0x1-1-01-0x1;

  long_max = 2147483647;
  ulong_max = 4294967295;
  long_min = -2147483647-1;

  llong_max = 9223372036854775807;
  ullong_max = 18446744073709551615;
  llong_min = -9223372036854775807-1;
}