pike.git/
src/
gc.c
Branch:
Tag:
Non-build tags
All tags
No tags
2004-03-21
2004-03-21 06:22:16 by Martin Nilsson <mani@lysator.liu.se>
f980133e35f8c9788a72570e2383d4c348886308 (
8
lines) (+
5
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Print int subtype in describe svalue.
Rev: src/gc.c:1.247
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: gc.c,v 1.
246
2004/03/
19
02
:
23
:
26
mast
Exp $
+
|| $Id: gc.c,v 1.
247
2004/03/
21
06
:
22
:
16
nilsson
Exp $
*/ #include "global.h"
33:
#include "block_alloc.h"
-
RCSID("$Id: gc.c,v 1.
246
2004/03/
19
02
:
23
:
26
mast
Exp $");
+
RCSID("$Id: gc.c,v 1.
247
2004/03/
21
06
:
22
:
16
nilsson
Exp $");
int gc_enabled = 1;
1188:
switch(s->type) { case T_INT:
-
fprintf(stderr," %"PRINTPIKEINT"
d\n
",s->u.integer);
+
fprintf(stderr," %"PRINTPIKEINT"
d (subtype %d)\n
",s->u.integer
,
+
s->subtype
);
break; case T_FLOAT: