pike.git/
src/
interpret_functions.h
Branch:
Tag:
Non-build tags
All tags
No tags
2003-01-26
2003-01-26 22:16:03 by Mirar (Pontus Hagland) <pike@sort.mirar.org>
5298daf29ae509b1de0ab14ceb0c2e5a865adb6c (
13
lines) (+
7
/-
6
)
[
Show
|
Annotate
]
Branch:
7.9
(large INT_TYPE saga) some INT32 -> INT_TYPE
Rev: src/interpret_functions.h:1.132
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: interpret_functions.h,v 1.
131
2003/01/26 22:
10
:
00
mirar Exp $
+
|| $Id: interpret_functions.h,v 1.
132
2003/01/26 22:
16
:
03
mirar Exp $
*/ /*
767:
) ) {
-
INT32
val = ++u->integer;
+
INT_TYPE
val = ++u->integer;
pop_2_elems(); push_int(val); } else {
787:
) ) {
-
INT32
val = --u->integer;
+
INT_TYPE
val = --u->integer;
pop_2_elems(); push_int(val); } else {
845:
) ) {
-
INT32
val = u->integer++;
+
INT_TYPE
val = u->integer++;
pop_2_elems(); push_int(val); } else {
868:
) ) {
-
INT32
val = u->integer--;
+
INT_TYPE
val = u->integer--;
pop_2_elems(); push_int(val); } else {
1757:
}); OPCODE0(F_SIZEOF, "sizeof", 0, {
-
INT32
val = pike_sizeof(Pike_sp-1);
+
INT_TYPE
val = pike_sizeof(Pike_sp-1);
pop_stack(); push_int(val); });