ack/lang/cem/cemcom/LLmessage.c

62 lines
1.1 KiB
C
Raw Normal View History

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1986-03-10 13:07:55 +00:00
/* PARSER ERROR ADMINISTRATION */
#include <alloc.h>
#include "nofloat.h"
1986-03-10 13:07:55 +00:00
#include "idf.h"
#include "arith.h"
#include "LLlex.h"
#include "Lpars.h"
extern char *symbol2str();
LLmessage(tk) {
err_occurred = 1;
if (tk < 0) {
error("end of file expected");
}
else if (tk) {
error("%s missing before %s", symbol2str(tk), symbol2str(DOT));
1986-03-10 13:07:55 +00:00
insert_token(tk);
}
else {
1986-03-10 13:07:55 +00:00
error("%s deleted", symbol2str(DOT));
}
tk_nmb_at_last_syn_err = token_nmb;
1986-03-10 13:07:55 +00:00
}
insert_token(tk)
int tk;
{
aside = dot;
DOT = tk;
switch (tk) {
/* The operands need some body */
case IDENTIFIER:
dot.tk_idf = gen_idf();
break;
case TYPE_IDENTIFIER:
dot.tk_idf = str2idf("int");
break;
case STRING:
dot.tk_bts = Salloc("", 1);
dot.tk_len = 1;
1986-03-10 13:07:55 +00:00
break;
case INTEGER:
dot.tk_fund = INT;
dot.tk_ival = 1;
break;
#ifndef NOFLOAT
1986-03-10 13:07:55 +00:00
case FLOATING:
dot.tk_fval = Salloc("0.0", 4);
break;
#endif /* NOFLOAT */
1986-03-10 13:07:55 +00:00
}
}