pike.git/
src/
language.yacc
Branch:
Tag:
Non-build tags
All tags
No tags
2002-08-27
2002-08-27 12:38:57 by Henrik Grubbström (Grubba) <grubba@grubba.org>
5cad7664b5999fea66ce0a7adbaad4aaff111d50 (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Bugfix.
Rev: src/language.yacc:1.292
113:
/* This is the grammar definition of Pike. */ #include "global.h"
-
RCSID("$Id: language.yacc,v 1.
291
2002/08/27 12:
37
:
09
grubba Exp $");
+
RCSID("$Id: language.yacc,v 1.
292
2002/08/27 12:
38
:
57
grubba Exp $");
#ifdef HAVE_MEMORY_H #include <memory.h> #endif
1363:
if ($2->u.sval.type == T_INT) { min = $2->u.sval.u.integer; #ifdef AUTO_BIGNUM
-
} else if (is_bignum_object_in_svalue(&
$4
->u.sval)) {
+
} else if (is_bignum_object_in_svalue(&
$2
->u.sval)) {
push_int(0);
-
if (is_lt(Pike_sp-1, &
$4
->u.sval)) {
+
if (is_lt(Pike_sp-1, &
$2
->u.sval)) {
min = MAX_INT32; } pop_stack();