mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
* as.h (strdup): Don't declare.
* stabs.c: Include libiberty.h (get_stab_string_offset): Use xstrdup rather than strdup. (s_stab_generic): Likewise. * as.c (parse_args): Likewise. * read.c (s_mri_sect): Likewise.
This commit is contained in:
@ -1,5 +1,12 @@
|
|||||||
Fri Mar 22 11:13:00 1996 Ian Lance Taylor <ian@cygnus.com>
|
Fri Mar 22 11:13:00 1996 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* as.h (strdup): Don't declare.
|
||||||
|
* stabs.c: Include libiberty.h
|
||||||
|
(get_stab_string_offset): Use xstrdup rather than strdup.
|
||||||
|
(s_stab_generic): Likewise.
|
||||||
|
* as.c (parse_args): Likewise.
|
||||||
|
* read.c (s_mri_sect): Likewise.
|
||||||
|
|
||||||
* gasp.c (change_base): Recognize \(...) construct documented to
|
* gasp.c (change_base): Recognize \(...) construct documented to
|
||||||
pass through enclosed characters literally through to the output.
|
pass through enclosed characters literally through to the output.
|
||||||
(process_assigns): Likewise. Also, be more careful to avoid
|
(process_assigns): Likewise. Also, be more careful to avoid
|
||||||
|
148
gas/as.c
148
gas/as.c
@ -1,5 +1,6 @@
|
|||||||
/* as.c - GAS main program.
|
/* as.c - GAS main program.
|
||||||
Copyright (C) 1987, 1990, 1991, 1992, 1994 Free Software Foundation, Inc.
|
Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 1996
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GAS, the GNU Assembler.
|
This file is part of GAS, the GNU Assembler.
|
||||||
|
|
||||||
@ -60,6 +61,12 @@ segT reg_section, expr_section;
|
|||||||
segT text_section, data_section, bss_section;
|
segT text_section, data_section, bss_section;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
int chunksize = 5000;
|
||||||
|
|
||||||
|
/* To monitor memory allocation more effectively, make this non-zero.
|
||||||
|
Then the chunk sizes for gas and bfd will be reduced. */
|
||||||
|
int debug_memory = 0;
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
print_version_id ()
|
print_version_id ()
|
||||||
@ -94,6 +101,7 @@ Options:\n\
|
|||||||
=file set listing file name (must be last sub-option)\n");
|
=file set listing file name (must be last sub-option)\n");
|
||||||
fprintf (stream, "\
|
fprintf (stream, "\
|
||||||
-D produce assembler debugging messages\n\
|
-D produce assembler debugging messages\n\
|
||||||
|
--defsym SYM=VAL define symbol SYM to given value\n\
|
||||||
-f skip whitespace and comment preprocessing\n\
|
-f skip whitespace and comment preprocessing\n\
|
||||||
--help show this message and exit\n\
|
--help show this message and exit\n\
|
||||||
-I DIR add DIR to search list for .include directives\n\
|
-I DIR add DIR to search list for .include directives\n\
|
||||||
@ -105,7 +113,7 @@ Options:\n\
|
|||||||
-nocpp ignored\n\
|
-nocpp ignored\n\
|
||||||
-o OBJFILE name the object-file output OBJFILE (default a.out)\n\
|
-o OBJFILE name the object-file output OBJFILE (default a.out)\n\
|
||||||
-R fold data section into text section\n\
|
-R fold data section into text section\n\
|
||||||
--statistics print maximum bytes and total seconds used\n\
|
--statistics print various measured statistics from execution\n\
|
||||||
--version print assembler version number and exit\n\
|
--version print assembler version number and exit\n\
|
||||||
-W suppress warnings\n\
|
-W suppress warnings\n\
|
||||||
-w ignored\n\
|
-w ignored\n\
|
||||||
@ -260,6 +268,8 @@ parse_args (pargc, pargv)
|
|||||||
{"verbose", no_argument, NULL, OPTION_VERBOSE},
|
{"verbose", no_argument, NULL, OPTION_VERBOSE},
|
||||||
#define OPTION_EMULATION (OPTION_STD_BASE + 6)
|
#define OPTION_EMULATION (OPTION_STD_BASE + 6)
|
||||||
{"emulation", required_argument, NULL, OPTION_EMULATION},
|
{"emulation", required_argument, NULL, OPTION_EMULATION},
|
||||||
|
#define OPTION_DEFSYM (OPTION_STD_BASE + 7)
|
||||||
|
{"defsym", required_argument, NULL, OPTION_DEFSYM}
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Construct the option lists from the standard list and the
|
/* Construct the option lists from the standard list and the
|
||||||
@ -365,6 +375,24 @@ parse_args (pargc, pargv)
|
|||||||
#endif
|
#endif
|
||||||
exit (EXIT_SUCCESS);
|
exit (EXIT_SUCCESS);
|
||||||
|
|
||||||
|
case OPTION_DEFSYM:
|
||||||
|
{
|
||||||
|
char *s;
|
||||||
|
long i;
|
||||||
|
symbolS *sym;
|
||||||
|
|
||||||
|
for (s = optarg; *s != '\0' && *s != '='; s++)
|
||||||
|
;
|
||||||
|
if (*s == '\0')
|
||||||
|
as_fatal ("bad defsym; format is --defsym name=value");
|
||||||
|
*s++ = '\0';
|
||||||
|
i = strtol (s, (char **) NULL, 0);
|
||||||
|
sym = symbol_new (optarg, absolute_section, (valueT) i,
|
||||||
|
&zero_address_frag);
|
||||||
|
symbol_table_insert (sym);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
case 'J':
|
case 'J':
|
||||||
flag_signed_overflow_ok = 1;
|
flag_signed_overflow_ok = 1;
|
||||||
break;
|
break;
|
||||||
@ -381,6 +409,9 @@ parse_args (pargc, pargv)
|
|||||||
|
|
||||||
case 'M':
|
case 'M':
|
||||||
flag_mri = 1;
|
flag_mri = 1;
|
||||||
|
#ifdef TC_M68K
|
||||||
|
flag_m68k_mri = 1;
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'R':
|
case 'R':
|
||||||
@ -418,9 +449,7 @@ parse_args (pargc, pargv)
|
|||||||
listing |= LISTING_SYMBOLS;
|
listing |= LISTING_SYMBOLS;
|
||||||
break;
|
break;
|
||||||
case '=':
|
case '=':
|
||||||
listing_filename = strdup (optarg + 1);
|
listing_filename = xstrdup (optarg + 1);
|
||||||
if (listing_filename == NULL)
|
|
||||||
as_fatal ("virtual memory exhausted");
|
|
||||||
optarg += strlen (listing_filename);
|
optarg += strlen (listing_filename);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -446,17 +475,13 @@ parse_args (pargc, pargv)
|
|||||||
|
|
||||||
case 'I':
|
case 'I':
|
||||||
{ /* Include file directory */
|
{ /* Include file directory */
|
||||||
char *temp = strdup (optarg);
|
char *temp = xstrdup (optarg);
|
||||||
if (!temp)
|
|
||||||
as_fatal ("virtual memory exhausted");
|
|
||||||
add_include_dir (temp);
|
add_include_dir (temp);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case 'o':
|
case 'o':
|
||||||
out_file_name = strdup (optarg);
|
out_file_name = xstrdup (optarg);
|
||||||
if (!out_file_name)
|
|
||||||
as_fatal ("virtual memory exhausted");
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'w':
|
case 'w':
|
||||||
@ -475,13 +500,28 @@ parse_args (pargc, pargv)
|
|||||||
*pargv = new_argv;
|
*pargv = new_argv;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void dump_statistics ();
|
||||||
|
static long start_time;
|
||||||
|
|
||||||
int
|
int
|
||||||
main (argc, argv)
|
main (argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
{
|
{
|
||||||
|
int macro_alternate;
|
||||||
|
int macro_strip_at;
|
||||||
int keep_it;
|
int keep_it;
|
||||||
long start_time = get_run_time ();
|
|
||||||
|
start_time = get_run_time ();
|
||||||
|
|
||||||
|
if (debug_memory)
|
||||||
|
{
|
||||||
|
#ifdef BFD_ASSEMBLER
|
||||||
|
extern long _bfd_chunksize;
|
||||||
|
_bfd_chunksize = 64;
|
||||||
|
#endif
|
||||||
|
chunksize = 64;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef HOST_SPECIAL_INIT
|
#ifdef HOST_SPECIAL_INIT
|
||||||
HOST_SPECIAL_INIT (argc, argv);
|
HOST_SPECIAL_INIT (argc, argv);
|
||||||
@ -511,11 +551,27 @@ main (argc, argv)
|
|||||||
symbol_begin ();
|
symbol_begin ();
|
||||||
frag_init ();
|
frag_init ();
|
||||||
subsegs_begin ();
|
subsegs_begin ();
|
||||||
read_begin ();
|
|
||||||
parse_args (&argc, &argv);
|
parse_args (&argc, &argv);
|
||||||
|
read_begin ();
|
||||||
input_scrub_begin ();
|
input_scrub_begin ();
|
||||||
expr_begin ();
|
expr_begin ();
|
||||||
macro_init (0, flag_mri, macro_expr);
|
|
||||||
|
if (flag_print_statistics)
|
||||||
|
xatexit (dump_statistics);
|
||||||
|
|
||||||
|
macro_alternate = 0;
|
||||||
|
macro_strip_at = 0;
|
||||||
|
#ifdef TC_I960
|
||||||
|
macro_strip_at = flag_mri;
|
||||||
|
#endif
|
||||||
|
#ifdef TC_A29K
|
||||||
|
/* For compatibility with the AMD 29K family macro assembler
|
||||||
|
specification. */
|
||||||
|
macro_alternate = 1;
|
||||||
|
macro_strip_at = 1;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
macro_init (macro_alternate, flag_mri, macro_strip_at, macro_expr);
|
||||||
|
|
||||||
PROGRESS (1);
|
PROGRESS (1);
|
||||||
|
|
||||||
@ -531,14 +587,10 @@ main (argc, argv)
|
|||||||
PROGRESS (1);
|
PROGRESS (1);
|
||||||
|
|
||||||
perform_an_assembly_pass (argc, argv); /* Assemble it. */
|
perform_an_assembly_pass (argc, argv); /* Assemble it. */
|
||||||
#ifdef TC_I960
|
|
||||||
brtab_emit ();
|
#ifdef md_end
|
||||||
|
md_end ();
|
||||||
#endif
|
#endif
|
||||||
/* start-sanitize-rce */
|
|
||||||
#ifdef TC_RCE
|
|
||||||
dump_literals(0);
|
|
||||||
#endif
|
|
||||||
/* end-sanitize-rce */
|
|
||||||
|
|
||||||
if (seen_at_least_1_file ()
|
if (seen_at_least_1_file ()
|
||||||
&& !((had_warnings () && flag_always_generate_output)
|
&& !((had_warnings () && flag_always_generate_output)
|
||||||
@ -565,34 +617,44 @@ main (argc, argv)
|
|||||||
unlink (out_file_name);
|
unlink (out_file_name);
|
||||||
|
|
||||||
input_scrub_end ();
|
input_scrub_end ();
|
||||||
#ifdef md_end
|
|
||||||
md_end ();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
END_PROGRESS (myname);
|
END_PROGRESS (myname);
|
||||||
|
|
||||||
if (flag_print_statistics)
|
/* Use xexit instead of return, because under VMS environments they
|
||||||
{
|
|
||||||
extern char **environ;
|
|
||||||
#ifdef HAVE_SBRK
|
|
||||||
char *lim = (char *) sbrk (0);
|
|
||||||
#endif
|
|
||||||
long run_time = get_run_time () - start_time;
|
|
||||||
|
|
||||||
fprintf (stderr, "%s: total time in assembly: %ld.%06ld\n",
|
|
||||||
myname, run_time / 1000000, run_time % 1000000);
|
|
||||||
#ifdef HAVE_SBRK
|
|
||||||
fprintf (stderr, "%s: data size %ld\n",
|
|
||||||
myname, (long) (lim - (char *) &environ));
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Use exit instead of return, because under VMS environments they
|
|
||||||
may not place the same interpretation on the value given. */
|
may not place the same interpretation on the value given. */
|
||||||
if ((had_warnings () && flag_always_generate_output)
|
if ((had_warnings () && flag_always_generate_output)
|
||||||
|| had_errors () > 0)
|
|| had_errors () > 0)
|
||||||
exit (EXIT_FAILURE);
|
xexit (EXIT_FAILURE);
|
||||||
exit (EXIT_SUCCESS);
|
xexit (EXIT_SUCCESS);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
dump_statistics ()
|
||||||
|
{
|
||||||
|
extern char **environ;
|
||||||
|
#ifdef HAVE_SBRK
|
||||||
|
char *lim = (char *) sbrk (0);
|
||||||
|
#endif
|
||||||
|
long run_time = get_run_time () - start_time;
|
||||||
|
|
||||||
|
fprintf (stderr, "%s: total time in assembly: %ld.%06ld\n",
|
||||||
|
myname, run_time / 1000000, run_time % 1000000);
|
||||||
|
#ifdef HAVE_SBRK
|
||||||
|
fprintf (stderr, "%s: data size %ld\n",
|
||||||
|
myname, (long) (lim - (char *) &environ));
|
||||||
|
#endif
|
||||||
|
|
||||||
|
subsegs_print_statistics (stderr);
|
||||||
|
write_print_statistics (stderr);
|
||||||
|
symbol_print_statistics (stderr);
|
||||||
|
read_print_statistics (stderr);
|
||||||
|
|
||||||
|
#ifdef tc_print_statistics
|
||||||
|
tc_print_statistics (stderr);
|
||||||
|
#endif
|
||||||
|
#ifdef obj_print_statistics
|
||||||
|
obj_print_statistics (stderr);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
24
gas/read.c
24
gas/read.c
@ -2108,9 +2108,9 @@ s_org (ignore)
|
|||||||
/* Handle parsing for the MRI SECT/SECTION pseudo-op. This should be
|
/* Handle parsing for the MRI SECT/SECTION pseudo-op. This should be
|
||||||
called by the obj-format routine which handles section changing
|
called by the obj-format routine which handles section changing
|
||||||
when in MRI mode. It will create a new section, and return it. It
|
when in MRI mode. It will create a new section, and return it. It
|
||||||
will set *TYPE to the section type: one of '\0' (unspecified), 'C'
|
will set *TYPE to the section type: one of 'C' (code), 'D' (data),
|
||||||
(code), 'D' (data), 'M' (mixed), or 'R' (romable). If
|
'M' (mixed), or 'R' (romable). If BFD_ASSEMBLER is defined, the
|
||||||
BFD_ASSEMBLER is defined, the flags will be set in the section. */
|
flags will be set in the section. */
|
||||||
|
|
||||||
void
|
void
|
||||||
s_mri_sect (type)
|
s_mri_sect (type)
|
||||||
@ -2138,9 +2138,7 @@ s_mri_sect (type)
|
|||||||
*input_line_pointer = '\0';
|
*input_line_pointer = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
name = strdup (name);
|
name = xstrdup (name);
|
||||||
if (name == NULL)
|
|
||||||
as_fatal ("virtual memory exhausted");
|
|
||||||
|
|
||||||
*input_line_pointer = c;
|
*input_line_pointer = c;
|
||||||
|
|
||||||
@ -2155,7 +2153,7 @@ s_mri_sect (type)
|
|||||||
record_alignment (seg, align);
|
record_alignment (seg, align);
|
||||||
}
|
}
|
||||||
|
|
||||||
*type = '\0';
|
*type = 'C';
|
||||||
if (*input_line_pointer == ',')
|
if (*input_line_pointer == ',')
|
||||||
{
|
{
|
||||||
c = *++input_line_pointer;
|
c = *++input_line_pointer;
|
||||||
@ -2172,11 +2170,11 @@ s_mri_sect (type)
|
|||||||
|
|
||||||
flags = SEC_NO_FLAGS;
|
flags = SEC_NO_FLAGS;
|
||||||
if (*type == 'C')
|
if (*type == 'C')
|
||||||
flags = SEC_CODE;
|
flags = SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE;
|
||||||
else if (*type == 'D')
|
else if (*type == 'D' || *type == 'M')
|
||||||
flags = SEC_DATA;
|
flags = SEC_ALLOC | SEC_LOAD | SEC_DATA;
|
||||||
else if (*type == 'R')
|
else if (*type == 'R')
|
||||||
flags = SEC_ROM;
|
flags = SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_READONLY | SEC_ROM;
|
||||||
if (flags != SEC_NO_FLAGS)
|
if (flags != SEC_NO_FLAGS)
|
||||||
{
|
{
|
||||||
if (! bfd_set_section_flags (stdoutput, seg, flags))
|
if (! bfd_set_section_flags (stdoutput, seg, flags))
|
||||||
@ -2206,9 +2204,7 @@ s_mri_sect (type)
|
|||||||
name = input_line_pointer;
|
name = input_line_pointer;
|
||||||
c = get_symbol_end ();
|
c = get_symbol_end ();
|
||||||
|
|
||||||
name = strdup (name);
|
name = xstrdup (name);
|
||||||
if (name == NULL)
|
|
||||||
as_fatal ("virtual memory exhausted");
|
|
||||||
|
|
||||||
*input_line_pointer = c;
|
*input_line_pointer = c;
|
||||||
|
|
||||||
|
60
gas/stabs.c
60
gas/stabs.c
@ -18,6 +18,7 @@ License along with GAS; see the file COPYING. If not, write
|
|||||||
to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include "as.h"
|
#include "as.h"
|
||||||
|
#include "libiberty.h"
|
||||||
#include "obstack.h"
|
#include "obstack.h"
|
||||||
#include "subsegs.h"
|
#include "subsegs.h"
|
||||||
|
|
||||||
@ -76,7 +77,6 @@ get_stab_string_offset (string, stabstr_secname)
|
|||||||
{ /* Ordinary case. */
|
{ /* Ordinary case. */
|
||||||
segT save_seg;
|
segT save_seg;
|
||||||
subsegT save_subseg;
|
subsegT save_subseg;
|
||||||
char *newsecname;
|
|
||||||
segT seg;
|
segT seg;
|
||||||
char *p;
|
char *p;
|
||||||
|
|
||||||
@ -84,15 +84,10 @@ get_stab_string_offset (string, stabstr_secname)
|
|||||||
save_subseg = now_subseg;
|
save_subseg = now_subseg;
|
||||||
|
|
||||||
/* Create the stab string section. */
|
/* Create the stab string section. */
|
||||||
newsecname = xmalloc ((unsigned long) (strlen (stabstr_secname) + 1));
|
seg = subseg_new (stabstr_secname, 0);
|
||||||
strcpy (newsecname, stabstr_secname);
|
|
||||||
|
|
||||||
seg = subseg_new (newsecname, 0);
|
|
||||||
|
|
||||||
retval = seg_info (seg)->stabu.stab_string_size;
|
retval = seg_info (seg)->stabu.stab_string_size;
|
||||||
if (retval > 0)
|
if (retval <= 0)
|
||||||
free (newsecname);
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
/* Make sure the first string is empty. */
|
/* Make sure the first string is empty. */
|
||||||
p = frag_more (1);
|
p = frag_more (1);
|
||||||
@ -100,8 +95,8 @@ get_stab_string_offset (string, stabstr_secname)
|
|||||||
retval = seg_info (seg)->stabu.stab_string_size = 1;
|
retval = seg_info (seg)->stabu.stab_string_size = 1;
|
||||||
#ifdef BFD_ASSEMBLER
|
#ifdef BFD_ASSEMBLER
|
||||||
bfd_set_section_flags (stdoutput, seg, SEC_READONLY | SEC_DEBUGGING);
|
bfd_set_section_flags (stdoutput, seg, SEC_READONLY | SEC_DEBUGGING);
|
||||||
#else
|
if (seg->name == stabstr_secname)
|
||||||
free (newsecname);
|
seg->name = xstrdup (stabstr_secname);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -245,9 +240,24 @@ s_stab_generic (what, stab_secname, stabstr_secname)
|
|||||||
unsigned int stroff;
|
unsigned int stroff;
|
||||||
char *p;
|
char *p;
|
||||||
|
|
||||||
|
static segT cached_sec;
|
||||||
|
static char *cached_secname;
|
||||||
|
|
||||||
dot = frag_now_fix ();
|
dot = frag_now_fix ();
|
||||||
|
|
||||||
seg = subseg_new (stab_secname, 0);
|
if (cached_secname && !strcmp (cached_secname, stab_secname))
|
||||||
|
{
|
||||||
|
seg = cached_sec;
|
||||||
|
subseg_set (seg, 0);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
seg = subseg_new (stab_secname, 0);
|
||||||
|
if (cached_secname)
|
||||||
|
free (cached_secname);
|
||||||
|
cached_secname = xstrdup (stab_secname);
|
||||||
|
cached_sec = seg;
|
||||||
|
}
|
||||||
|
|
||||||
if (! seg_info (seg)->hadone)
|
if (! seg_info (seg)->hadone)
|
||||||
{
|
{
|
||||||
@ -262,6 +272,11 @@ s_stab_generic (what, stab_secname, stabstr_secname)
|
|||||||
}
|
}
|
||||||
|
|
||||||
stroff = get_stab_string_offset (string, stabstr_secname);
|
stroff = get_stab_string_offset (string, stabstr_secname);
|
||||||
|
if (what == 's')
|
||||||
|
{
|
||||||
|
/* release the string */
|
||||||
|
obstack_free (¬es, string);
|
||||||
|
}
|
||||||
|
|
||||||
/* At least for now, stabs in a special stab section are always
|
/* At least for now, stabs in a special stab section are always
|
||||||
output as 12 byte blocks of information. */
|
output as 12 byte blocks of information. */
|
||||||
@ -345,7 +360,11 @@ s_xstab (what)
|
|||||||
{
|
{
|
||||||
int length;
|
int length;
|
||||||
char *stab_secname, *stabstr_secname;
|
char *stab_secname, *stabstr_secname;
|
||||||
|
static char *saved_secname, *saved_strsecname;
|
||||||
|
|
||||||
|
/* @@ MEMORY LEAK: This allocates a copy of the string, but in most
|
||||||
|
cases it will be the same string, so we could release the storage
|
||||||
|
back to the obstack it came from. */
|
||||||
stab_secname = demand_copy_C_string (&length);
|
stab_secname = demand_copy_C_string (&length);
|
||||||
SKIP_WHITESPACE ();
|
SKIP_WHITESPACE ();
|
||||||
if (*input_line_pointer == ',')
|
if (*input_line_pointer == ',')
|
||||||
@ -359,11 +378,20 @@ s_xstab (what)
|
|||||||
|
|
||||||
/* To get the name of the stab string section, simply add "str" to
|
/* To get the name of the stab string section, simply add "str" to
|
||||||
the stab section name. */
|
the stab section name. */
|
||||||
stabstr_secname = (char *) xmalloc (strlen (stab_secname) + 4);
|
if (saved_secname == 0 || strcmp (saved_secname, stab_secname))
|
||||||
strcpy (stabstr_secname, stab_secname);
|
{
|
||||||
strcat (stabstr_secname, "str");
|
stabstr_secname = (char *) xmalloc (strlen (stab_secname) + 4);
|
||||||
s_stab_generic (what, stab_secname, stabstr_secname);
|
strcpy (stabstr_secname, stab_secname);
|
||||||
free (stabstr_secname);
|
strcat (stabstr_secname, "str");
|
||||||
|
if (saved_secname)
|
||||||
|
{
|
||||||
|
free (saved_secname);
|
||||||
|
free (saved_strsecname);
|
||||||
|
}
|
||||||
|
saved_secname = stab_secname;
|
||||||
|
saved_strsecname = stabstr_secname;
|
||||||
|
}
|
||||||
|
s_stab_generic (what, saved_secname, saved_strsecname);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef S_SET_DESC
|
#ifdef S_SET_DESC
|
||||||
|
Reference in New Issue
Block a user