summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-08-09 13:02:35 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-08-09 13:04:13 -0700
commit767750b666f0e66b25fa9d1c7b905a935c637786 (patch)
tree29ab0def56da21dd3d7e7256f41187c99a1c658d
parent0a45cc8ce8ae3451a7cff45c3947dbc631f1ddad (diff)
downloadnasm-767750b666f0e66b25fa9d1c7b905a935c637786.tar.gz
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>
-rw-r--r--output/nulldbg.c4
-rw-r--r--output/outieee.c2
-rw-r--r--output/outlib.h2
-rw-r--r--output/outobj.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/output/nulldbg.c b/output/nulldbg.c
index 2b985c58..c7bace13 100644
--- a/output/nulldbg.c
+++ b/output/nulldbg.c
@@ -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
diff --git a/output/outieee.c b/output/outieee.c
index 900d1e3e..ffdd5d6e 100644
--- a/output/outieee.c
+++ b/output/outieee.c
@@ -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,
diff --git a/output/outlib.h b/output/outlib.h
index babe1d0e..f3cd1bc6 100644
--- a/output/outlib.h
+++ b/output/outlib.h
@@ -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);
diff --git a/output/outobj.c b/output/outobj.c
index 89156b22..b8499ab9 100644
--- a/output/outobj.c
+++ b/output/outobj.c
@@ -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,