changed error messages, initialize bss with funny value, and be
somewhat more conservative with memory usage
This commit is contained in:
parent
da11deeece
commit
73ac23824b
|
@ -1 +1 @@
|
|||
static char Version[] = "ACK Modula-2 compiler Version 0.43";
|
||||
static char Version[] = "ACK Modula-2 compiler Version 0.44";
|
||||
|
|
|
@ -111,10 +111,12 @@ StatementSequence(register t_node **pnd;)
|
|||
[ %persistent
|
||||
';'
|
||||
statement(&nd)
|
||||
{ nd1 = dot2node(Link, *pnd, nd);
|
||||
*pnd = nd1;
|
||||
nd1->nd_symb = ';';
|
||||
pnd = &(nd1->nd_right);
|
||||
{ if (nd != EmptyStatement) {
|
||||
nd1 = dot2node(Link, *pnd, nd);
|
||||
*pnd = nd1;
|
||||
nd1->nd_symb = ';';
|
||||
pnd = &(nd1->nd_right);
|
||||
}
|
||||
}
|
||||
]*
|
||||
;
|
||||
|
@ -262,15 +264,15 @@ ReturnStatement(t_node **pnd;)
|
|||
[
|
||||
expression(&(nd->nd_right))
|
||||
{ if (scopeclosed(CurrentScope)) {
|
||||
error("a module body has no result value");
|
||||
error("a module body cannot return a value");
|
||||
}
|
||||
else if (! ResultType(df->df_type)) {
|
||||
error("procedure \"%s\" has no result value", df->df_idf->id_text);
|
||||
error("procedure \"%s\" is not a function, so cannot return a value", df->df_idf->id_text);
|
||||
}
|
||||
}
|
||||
|
|
||||
{ if (ResultType(df->df_type)) {
|
||||
error("procedure \"%s\" must return a value", df->df_idf->id_text);
|
||||
error("function procedure \"%s\" must return a value", df->df_idf->id_text);
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -181,6 +181,9 @@ WalkModule(module)
|
|||
C_zne(RETURN_LABEL);
|
||||
C_ine_dlb(data_label, (arith) 0);
|
||||
}
|
||||
else if (! options['R']) {
|
||||
C_cal("killbss");
|
||||
}
|
||||
|
||||
for (; nd; nd = nd->nd_left) {
|
||||
C_cal(nd->nd_def->mod_vis->sc_scope->sc_name);
|
||||
|
|
Loading…
Reference in a new issue