improved symbol table generation when source file has line directives
This commit is contained in:
parent
fd51b64d2c
commit
e07e849cab
@ -809,6 +809,11 @@ do_line(l)
|
||||
* Do not attempt to free the old string, since it might
|
||||
* be used in a def structure.
|
||||
*/
|
||||
#ifdef DBSYMTAB
|
||||
if (options['g'] && strcmp(FileName, tk.tk_bts) != 0) {
|
||||
C_ms_std(tk.tk_bts, N_SOL, 0);
|
||||
}
|
||||
#endif /* DBSYMTAB */
|
||||
FileName = tk.tk_bts;
|
||||
}
|
||||
}
|
||||
|
||||
@ -712,6 +712,12 @@ do_line(l)
|
||||
|
||||
SkipRestOfLine();
|
||||
LineNumber = l; /* the number of the next input line */
|
||||
if (t == STRING) /* is there a filespecifier? */
|
||||
if (t == STRING) { /* is there a filespecifier? */
|
||||
#ifdef DBSYMTAB
|
||||
if (options['g'] && strcmp(FileName, tk.tk_bts) != 0) {
|
||||
C_ms_std(tk.tk_bts, N_SOL, 0);
|
||||
}
|
||||
#endif /* DBSYMTAB */
|
||||
FileName = tk.tk_bts;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user