diff options
author | fche <fche> | 2007-09-13 02:18:35 +0000 |
---|---|---|
committer | fche <fche> | 2007-09-13 02:18:35 +0000 |
commit | 0a08ca991795478fd8b871b881b160e93145d3ae (patch) | |
tree | c4fb2051f5647932a157933eb799d33ba3818037 /testsuite/buildok/ten.stp | |
parent | e38723d2391f4e274b46317187179a18bfb5135f (diff) | |
download | systemtap-steved-0a08ca991795478fd8b871b881b160e93145d3ae.tar.gz systemtap-steved-0a08ca991795478fd8b871b881b160e93145d3ae.tar.xz systemtap-steved-0a08ca991795478fd8b871b881b160e93145d3ae.zip |
2007-09-12 Frank Ch. Eigler <fche@elastic.org>
PR 5023
* translate.cxx (c_unparser::visit_literal_number): Support LLONG_MIN.
(visit_unary_expression): Likewise.
2007-09-12 Frank Ch. Eigler <fche@elastic.org>
PR 5023.
* buildok/ten.stp: Extend some more.
Diffstat (limited to 'testsuite/buildok/ten.stp')
-rwxr-xr-x | testsuite/buildok/ten.stp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/buildok/ten.stp b/testsuite/buildok/ten.stp index dfa1e5ac..cd94645a 100755 --- a/testsuite/buildok/ten.stp +++ b/testsuite/buildok/ten.stp @@ -13,4 +13,9 @@ probe begin ullong_max = 18446744073709551615; llong_min = -9223372036854775807-1; llong_min2 = -9223372036854775808; + llong_min3 = 9223372036854775808; + + // nearly out-of-range negative numbers + underflow_1 = -9223372036854775809; + underflow_2 = -18446744073709551615; } |