diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | HACKING | 3 | ||||
-rw-r--r-- | translate.cxx | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2005-11-08 Frank Ch. Eigler <fche@redhat.com> + Patch from "Mao, Bibo" <bibo.mao@intel.com> + * translate.cxx (mapvar::exists): Correct 64-bit type mismatch. + +2005-11-08 Frank Ch. Eigler <fche@redhat.com> + * tapsets.cxx (blacklisted_p): Add blacklist for some .return probes to kludge around bug #1345. * tapset/system_calls.stp: Add some %( %? %) conditionals to @@ -39,7 +39,8 @@ the <systemtap@sources.redhat.com> mailing list. - test suites As far as practicable, changes should be accompanied by test cases - to prevent future regressions. + to prevent future regressions. Tests should be run on at least + x86, and ideally also on some 64-bit platform. Tests that don't require probe execution should go into new or modified files under /src/testsuite/, a simple automake-flavoured diff --git a/translate.cxx b/translate.cxx index 0c1ce84f..d3e9a492 100644 --- a/translate.cxx +++ b/translate.cxx @@ -471,7 +471,7 @@ struct mapvar string exists (vector<tmpvar> const & indices) const { - return "(((int)" + call_prefix("get", indices) + ")) != 0)"; + return "(((int64_t)" + call_prefix("get", indices) + ")) != 0)"; } string get (vector<tmpvar> const & indices) const |