Branch: Tag:

2012-06-22

2012-06-22 09:12:41 by Per Hedbor <ph@opera.com>

Fixed warning from gcc (about undefined behaviour)

1734:    while (args > 2) {    /* Pop the smallest element from the heap. */    FLOAT_ARG_TYPE top = Pike_sp[-args].u.float_number; -  Pike_sp[-args] = *(--Pike_sp); +  Pike_sp[-args] = Pike_sp[-1]; +  Pike_sp--;    args--;    float_heap_sift_down(Pike_sp-args, 0, args);