diff options
Diffstat (limited to 'gdb/arm-xdep.c')
-rw-r--r-- | gdb/arm-xdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/arm-xdep.c b/gdb/arm-xdep.c index 64ca9003665..b38d26c0b9a 100644 --- a/gdb/arm-xdep.c +++ b/gdb/arm-xdep.c @@ -172,7 +172,7 @@ /* OBSOLETE and mark data and stack spaces as empty. *x/ */ /* OBSOLETE */ /* OBSOLETE if (corefile) */ -/* OBSOLETE free (corefile); */ +/* OBSOLETE xfree (corefile); */ /* OBSOLETE corefile = 0; */ /* OBSOLETE */ /* OBSOLETE if (corechan >= 0) */ @@ -189,7 +189,7 @@ /* OBSOLETE if (filename) */ /* OBSOLETE { */ /* OBSOLETE filename = tilde_expand (filename); */ -/* OBSOLETE make_cleanup (free, filename); */ +/* OBSOLETE make_cleanup (xfree, filename); */ /* OBSOLETE */ /* OBSOLETE if (have_inferior_p ()) */ /* OBSOLETE error ("To look at a core file, you must kill the program with \"kill\"."); */ @@ -320,7 +320,7 @@ /* OBSOLETE Mark text segment as empty. *x/ */ /* OBSOLETE */ /* OBSOLETE if (execfile) */ -/* OBSOLETE free (execfile); */ +/* OBSOLETE xfree (execfile); */ /* OBSOLETE execfile = 0; */ /* OBSOLETE data_start = 0; */ /* OBSOLETE data_end -= exec_data_start; */ @@ -343,7 +343,7 @@ /* OBSOLETE if (filename) */ /* OBSOLETE { */ /* OBSOLETE filename = tilde_expand (filename); */ -/* OBSOLETE make_cleanup (free, filename); */ +/* OBSOLETE make_cleanup (xfree, filename); */ /* OBSOLETE */ /* OBSOLETE execchan = openp (getenv ("PATH"), 1, filename, O_RDONLY, 0, */ /* OBSOLETE &execfile); */ |