pike.git/
src/
opcodes.c
Branch:
Tag:
Non-build tags
All tags
No tags
2000-08-14
2000-08-14 20:31:17 by Henrik Grubbström (Grubba) <grubba@grubba.org>
053d7293ec9b4bc000ccbf1bd00cb0b785c9d3c8 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed a few warnings.
Rev: src/opcodes.c:1.86
26:
#include "bignum.h" #include "operators.h"
-
RCSID("$Id: opcodes.c,v 1.
85
2000/08/14 20:
29
:
14
grubba Exp $");
+
RCSID("$Id: opcodes.c,v 1.
86
2000/08/14 20:
31
:
17
grubba Exp $");
void index_no_free(struct svalue *to,struct svalue *what,struct svalue *ind) {
224:
switch(sp[-1].type) { case T_FLOAT:
-
i=(int)(sp[-1].u.float_number);
+
i=
DO_NOT_WARN
(
(
int)(sp[-1].u.float_number)
)
;
#ifdef AUTO_BIGNUM if((i < 0 ? -i : i) < floor(fabs(sp[-1].u.float_number))) {