]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Make --trace-codegen start printing from the first basic block, rather
authorJeremy Fitzhardinge <jeremy@valgrind.org>
Fri, 19 Dec 2003 17:16:54 +0000 (17:16 +0000)
committerJeremy Fitzhardinge <jeremy@valgrind.org>
Fri, 19 Dec 2003 17:16:54 +0000 (17:16 +0000)
than the second.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2133

coregrind/vg_translate.c

index 27bd1a7768747cf08997bca2925d82e4b31b3d65..877d2434850d7eeea42625fcaa68f04041a2c14a 100644 (file)
@@ -2386,7 +2386,7 @@ void VG_(translate) ( /*IN*/  ThreadId tid,
       notrace_until_limit to be the number of translations to be made
       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);