pike.git/
src/
operators.c
Branch:
Tag:
Non-build tags
All tags
No tags
2012-06-22
2012-06-22 09:12:41 by Per Hedbor <ph@opera.com>
416a4552d8ef2fc1cf8b3c91f679d881cd981f2d (
4
lines) (+
3
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
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);