|
From: Nicholas N. <nj...@ca...> - 2004-04-01 15:26:31
|
CVS commit by nethercote:
Removed unused function.
M +0 -17 vg_translate.c 1.73
--- valgrind/coregrind/vg_translate.c #1.72:1.73
@@ -200,21 +200,4 @@ void VG_(copy_UInstr) ( UCodeBlock* cb,
}
-/* Copy auxiliary info from one uinstr to another. */
-static __inline__
-void copyAuxInfoFromTo ( UInstr* src, UInstr* dst )
-{
- dst->cond = src->cond;
- dst->extra4b = src->extra4b;
- dst->signed_widen = src->signed_widen;
- dst->jmpkind = src->jmpkind;
- dst->flags_r = src->flags_r;
- dst->flags_w = src->flags_w;
- dst->argc = src->argc;
- dst->regparms_n = src->regparms_n;
- dst->has_ret_val = src->has_ret_val;
- dst->regs_live_after = src->regs_live_after;
-}
-
-
/* Set the lit32 field of the most recent uinsn. */
void VG_(set_lit_field) ( UCodeBlock* cb, UInt lit32 )
|