]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Remove extended_UCode 'need', which has been obsoleted by Vex. Kept the
authorNicholas Nethercote <njn@valgrind.org>
Mon, 22 Nov 2004 20:37:42 +0000 (20:37 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Mon, 22 Nov 2004 20:37:42 +0000 (20:37 +0000)
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

coregrind/core.h
coregrind/vg_needs.c
include/tool.h.base
memcheck/mc_main.c

index 5c1fa98efac97773b8e5693e0ce26e3945de0385..9ecb4fc90993a1b45bca2c2e67f649550139395c 100644 (file)
@@ -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;
index cbf6fa4c33e8aff40a7d6961861841b775b6260c..4ac6354e5d54518965fe17fa801135bf6ddc6972 100644 (file)
@@ -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)
index f9ff77ea7b576cd80758d6c84842be9a379fecb4..d928b56f7be99396cd111b08a877401203937133 100644 (file)
@@ -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 );
 
index 9bca42d457904af7aad59357ea75b00d8bfd9db1..a3f78bd783488b7e422f5493be4b4edb506648dc 100644 (file)
@@ -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)       ();