]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Removed unused function.
authorNicholas Nethercote <n.nethercote@gmail.com>
Thu, 1 Apr 2004 15:26:23 +0000 (15:26 +0000)
committerNicholas Nethercote <n.nethercote@gmail.com>
Thu, 1 Apr 2004 15:26:23 +0000 (15:26 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2348

coregrind/vg_translate.c

index 6ed8bd2266899f91d2d0c685a045ae9f79e10553..f6a399e0014f3f280737722c9a263ec0343d32d9 100644 (file)
@@ -199,23 +199,6 @@ void VG_(copy_UInstr) ( UCodeBlock* cb, UInstr* instr )
    cb->used++;
 }
 
-/* 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 )
 {