|
From: Jeremy F. <je...@go...> - 2003-12-19 17:18:34
|
CVS commit by fitzhardinge:
Make --trace-codegen start printing from the first basic block, rather
than the second.
M +1 -1 vg_translate.c 1.65
--- valgrind/coregrind/vg_translate.c #1.64:1.65
@@ -2387,5 +2387,5 @@ void VG_(translate) ( /*IN*/ ThreadId t
before --trace-codegen= style printing takes effect. */
notrace_until_done
- = VG_(overall_in_count) > notrace_until_limit;
+ = VG_(overall_in_count) >= notrace_until_limit;
seg = VG_(find_segment)(orig_addr);
|