From 5937a72b76d5b05f622d1efb5a15eaf2838ae4eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Santos=20Costa?= Date: Fri, 12 Feb 2010 16:25:43 +0000 Subject: [PATCH] try to get rid of a warning. --- OPTYap/tab.tries.insts.i | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OPTYap/tab.tries.insts.i b/OPTYap/tab.tries.insts.i index fd6cf05b8..20eea41c2 100644 --- a/OPTYap/tab.tries.insts.i +++ b/OPTYap/tab.tries.insts.i @@ -1395,9 +1395,9 @@ #if SIZEOF_DOUBLE == 2 * SIZEOF_INT_P heap_arity -= 4; - *t_dbl = *++aux_stack_ptr; + t_dbl[0] = *++aux_stack_ptr; ++aux_stack_ptr; /* jump the float/longint extension mark */ - *(t_dbl + 1) = *++aux_stack_ptr; + t_dbl[1] = *++aux_stack_ptr; #else /* SIZEOF_DOUBLE == SIZEOF_INT_P */ heap_arity -= 2; *t_dbl = *++aux_stack_ptr;