Compile breakpoints for functions whose name begins with a '$'.
[COMPILER] * BUG: Compile breakpoints for functions whose name begins with a '$'.
This commit is contained in:
parent
0a95709974
commit
65c83f1407
1 changed files with 1 additions and 1 deletions
|
@ -547,7 +547,7 @@ void TRANS_code(void)
|
|||
printf("Compiling %s()...\n", TABLE_get_symbol_name(JOB->class->table, func->name));
|
||||
|
||||
/* Do not debug implicit or generated functions */
|
||||
if (!func->start || func->name == NO_SYMBOL || TABLE_get_symbol_name(JOB->class->table, func->name)[0] == '$')
|
||||
if (!func->start || func->name == NO_SYMBOL || TABLE_get_symbol_name(JOB->class->table, func->name)[0] == '@')
|
||||
JOB->nobreak = TRUE;
|
||||
else
|
||||
JOB->nobreak = FALSE;
|
||||
|
|
Loading…
Reference in a new issue