pike.git/
src/
docode.c
Branch:
Tag:
Non-build tags
All tags
No tags
1998-07-31
1998-07-31 06:51:41 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
e205e00c81b4422ac5a9d606c50744f4ddea3c92 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
fixed a fatal bug
Rev: src/docode.c:1.39
4:
||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h"
-
RCSID("$Id: docode.c,v 1.
38
1998/
05
/
25
10
:
38
:
44
hubbe Exp $");
+
RCSID("$Id: docode.c,v 1.
39
1998/
07
/
31
06
:
51
:
41
hubbe Exp $");
#include "las.h" #include "program.h" #include "language.h"
425:
case F_LOR: tmp1=alloc_label(); do_cond_jump(CAR(n), tmp1, n->token == F_LOR, 0);
-
if(do
_
docode
(CDR(n),
0)!
=
1)
fatal(
"
Compiler
logical
error.\n
");
+
code
_
expression
(CDR(n),
flags, n->token
=
=
F_LOR ?
"
||"
:
"
&&"
);
emit(F_LABEL,tmp1); return 1;