mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
output: change null_debug_routine to null_debug_directive
This is the null implementation of the function debug_directive. For some reason it ended up getting mangled as "null_debug_routine". Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
0a45cc8ce8
commit
767750b666
@ -55,7 +55,7 @@ void null_debug_deflabel(char *name, int32_t segment, int64_t offset,
|
||||
(void)special;
|
||||
}
|
||||
|
||||
void null_debug_routine(const char *directive, const char *params)
|
||||
void null_debug_directive(const char *directive, const char *params)
|
||||
{
|
||||
(void)directive;
|
||||
(void)params;
|
||||
@ -82,7 +82,7 @@ struct dfmt null_debug_form = {
|
||||
null_debug_init,
|
||||
null_debug_linenum,
|
||||
null_debug_deflabel,
|
||||
null_debug_routine,
|
||||
null_debug_directive,
|
||||
null_debug_typevalue,
|
||||
null_debug_output,
|
||||
null_debug_cleanup
|
||||
|
@ -1479,7 +1479,7 @@ static struct dfmt ladsoft_debug_form = {
|
||||
dbgls_init,
|
||||
dbgls_linnum,
|
||||
dbgls_deflabel,
|
||||
null_debug_routine,
|
||||
null_debug_directive,
|
||||
dbgls_typevalue,
|
||||
dbgls_output,
|
||||
dbgls_cleanup,
|
||||
|
@ -49,7 +49,7 @@ void null_debug_linenum(const char *filename, int32_t linenumber,
|
||||
int32_t segto);
|
||||
void null_debug_deflabel(char *name, int32_t segment, int64_t offset,
|
||||
int is_global, char *special);
|
||||
void null_debug_routine(const char *directive, const char *params);
|
||||
void null_debug_directive(const char *directive, const char *params);
|
||||
void null_debug_typevalue(int32_t type);
|
||||
void null_debug_output(int type, void *param);
|
||||
void null_debug_cleanup(void);
|
||||
|
@ -2535,7 +2535,7 @@ static struct dfmt borland_debug_form = {
|
||||
dbgbi_init,
|
||||
dbgbi_linnum,
|
||||
dbgbi_deflabel,
|
||||
null_debug_routine,
|
||||
null_debug_directive,
|
||||
dbgbi_typevalue,
|
||||
dbgbi_output,
|
||||
dbgbi_cleanup,
|
||||
|
Loading…
Reference in New Issue
Block a user