Delinted somewhat (did not work on 2/2 machines)

This commit is contained in:
ceriel
1991-02-18 11:11:04 +00:00
parent af7686cd66
commit cf0cd51810
6 changed files with 13 additions and 5 deletions

View File

@@ -15,6 +15,7 @@
#include "node.h"
#include "scope.h"
#include "type.h"
#include "dbsymtab.h"
int slevel = 0; /* nesting level of statements */
}
@@ -47,14 +48,16 @@ Statement
]?
{ if( !options['L'] )
C_lin((arith) dot.tk_lineno);
#ifdef DBSYMTAB
if (options['g']) {
static int ms_lineno;
if (ms_lineno != dot.tk_lineno) {
C_ms_std((char *) 0, N_SLINE, dot.tk_lineno);
C_ms_std((char *) 0, N_SLINE, (int) dot.tk_lineno);
ms_lineno = dot.tk_lineno;
}
}
#endif /* DBSYMTAB */
}
[
SimpleStatement