diff options
author | fche <fche> | 2005-08-05 17:04:29 +0000 |
---|---|---|
committer | fche <fche> | 2005-08-05 17:04:29 +0000 |
commit | aab2b35fb1752b5a1118d4c4b3e43a0db20cccb8 (patch) | |
tree | c21b700d3e8d7391d8f78657cf4be7f1070a3c67 /tapsets.cxx | |
parent | b905fd8805873fc3d36f128e1a3961eca05f58c7 (diff) | |
download | systemtap-steved-aab2b35fb1752b5a1118d4c4b3e43a0db20cccb8.tar.gz systemtap-steved-aab2b35fb1752b5a1118d4c4b3e43a0db20cccb8.tar.xz systemtap-steved-aab2b35fb1752b5a1118d4c4b3e43a0db20cccb8.zip |
2005-08-05 Frank Ch. Eigler <fche@elastic.org>
PR translator/1175
* translate.cxx (*): Added unlikely() markers to most emitted error
checks.
(mapvar::get,set): Handle NULL<->"" impedance mismatch.
(itervar::get_key): Ditto. Use base index=1 for keys.
* testsuite/buildok/one.stp: Extend. And it runs with -p5 too.
* stap.1: Document use of ";" statament as mechanism for grammar
ambiguity resolution.
* stp_check.in: Set $prefix.
* systemtap.spec.in: Prereq kernel-devel, kernel-debuginfo,
and not tcl.
* tapsets.cxx: Make slightly less verbose.
* translate.cxx
Diffstat (limited to 'tapsets.cxx')
-rw-r--r-- | tapsets.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tapsets.cxx b/tapsets.cxx index e5ae7f05..cd3764f0 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -279,7 +279,7 @@ dwflpp Dwarf_Addr bias; assert(dwfl); get_module_dwarf(); - if (sess.verbose) + if (false && sess.verbose) clog << "focusing on cu containing global addr " << a << endl; focus_on_cu(dwfl_module_addrdie(module, a, &bias)); assert(bias == module_bias); |