From: Nicholas Nethercote Date: Mon, 22 Nov 2004 20:37:42 +0000 (+0000) Subject: Remove extended_UCode 'need', which has been obsoleted by Vex. Kept the X-Git-Tag: svn/VALGRIND_3_0_0~1251 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8664fd5e880e4922f0bbb665b68cb619269056a1;p=thirdparty%2Fvalgrind.git Remove extended_UCode 'need', which has been obsoleted by Vex. Kept the field in the struct for backward compatibility (but renamed it to no_longer_used_0). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3067 --- diff --git a/coregrind/core.h b/coregrind/core.h index 5c1fa98efa..9ecb4fc909 100644 --- a/coregrind/core.h +++ b/coregrind/core.h @@ -388,7 +388,7 @@ typedef Bool shadow_regs; Bool command_line_options; Bool client_requests; - Bool extended_UCode; + Bool no_longer_used_0; // for backwards compatibility Bool syscall_wrapper; Bool sanity_checks; Bool data_syms; diff --git a/coregrind/vg_needs.c b/coregrind/vg_needs.c index cbf6fa4c33..4ac6354e5d 100644 --- a/coregrind/vg_needs.c +++ b/coregrind/vg_needs.c @@ -54,7 +54,7 @@ VgNeeds VG_(needs) = { .shadow_regs = False, .command_line_options = False, .client_requests = False, - .extended_UCode = False, + .no_longer_used_0 = False, .syscall_wrapper = False, .sanity_checks = False, .data_syms = False, @@ -161,7 +161,6 @@ NEEDS(basic_block_discards) NEEDS(shadow_regs) NEEDS(command_line_options) NEEDS(client_requests) -NEEDS(extended_UCode) NEEDS(syscall_wrapper) NEEDS(sanity_checks) NEEDS(data_syms) diff --git a/include/tool.h.base b/include/tool.h.base index f9ff77ea7b..d928b56f7b 100644 --- a/include/tool.h.base +++ b/include/tool.h.base @@ -1094,9 +1094,6 @@ extern void VG_(needs_command_line_options) ( void ); /* Tool defines its own client requests? */ extern void VG_(needs_client_requests) ( void ); -/* Tool defines its own UInstrs? */ -extern void VG_(needs_extended_UCode) ( void ); - /* Tool does stuff before and/or after system calls? */ extern void VG_(needs_syscall_wrapper) ( void ); diff --git a/memcheck/mc_main.c b/memcheck/mc_main.c index 9bca42d457..a3f78bd783 100644 --- a/memcheck/mc_main.c +++ b/memcheck/mc_main.c @@ -2151,7 +2151,6 @@ void TL_(pre_clo_init)(void) VG_(needs_shadow_regs) (); VG_(needs_command_line_options)(); VG_(needs_client_requests) (); - VG_(needs_extended_UCode) (); VG_(needs_sanity_checks) (); VG_(needs_shadow_memory) ();