pike.git/
src/
peep.c
Branch:
Tag:
Non-build tags
All tags
No tags
2007-04-19
2007-04-19 11:39:40 by Martin Stjernholm <mast@lysator.liu.se>
cffe88a5c1c2778b943f1783c659a626ebfcb1bb (
6
lines) (+
4
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed syntax.
Rev: src/peep.c:1.112
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: peep.c,v 1.
111
2006
/
09
/
17
15
:
53
:
31
grubba
Exp $
+
|| $Id: peep.c,v 1.
112
2007
/
04
/
19
11
:
39
:
40
mast
Exp $
*/ #include "global.h"
922:
static void pop_n_opcodes(int n) { int e;
+
p_instr *p;
#ifdef PIKE_DEBUG if (n > num_instrs) Pike_fatal("Popping out of instructions.\n"); #endif
-
p
_instr
*p
= ((p_instr *)low_make_buf_space(0, &instrbuf)) - n;
+
p = ((p_instr *)low_make_buf_space(0, &instrbuf)) - n;
for (e = 0; e < n; e++) { free_string(dmalloc_touch_named(struct pike_string *, p[e].file, "pop_n_opcodes"));