From fb05b6bcad625c3712a44820437e95da0edc2029 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Fri, 27 Feb 1998 10:16:44 -0800 Subject: [PATCH] fatal error on illegal lvalue removed Rev: src/docode.c:1.32 --- src/docode.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/docode.c b/src/docode.c index e8bc4a664b..55d3fd176c 100644 --- a/src/docode.c +++ b/src/docode.c @@ -4,7 +4,7 @@ ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h" -RCSID("$Id: docode.c,v 1.31 1998/02/20 00:36:17 hubbe Exp $"); +RCSID("$Id: docode.c,v 1.32 1998/02/27 18:16:44 hubbe Exp $"); #include "las.h" #include "program.h" #include "language.h" @@ -247,7 +247,8 @@ static int do_docode2(node *n,int flags) default: yyerror("Illegal lvalue."); emit(F_NUMBER,0); - return 1; + emit(F_NUMBER,0); + return 2; case F_ARRAY_LVALUE: case F_LVALUE_LIST: -- GitLab