mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-17 18:50:57 +08:00
toplev.c (debug_args): Add entry for VMS_DEBUG.
* toplev.c (debug_args): Add entry for VMS_DEBUG. * vmsdbgout.c (vmsdbgout_init): Fix typo in call to xmalloc. From-SVN: r50573
This commit is contained in:
parent
884523df8d
commit
1682dbb1d7
@ -1,3 +1,8 @@
|
||||
2002-03-11 Douglas B Rupp <rupp@gnat.com>
|
||||
|
||||
* toplev.c (debug_args): Add entry for VMS_DEBUG.
|
||||
* vmsdbgout.c (vmsdbgout_init): Fix typo in call to xmalloc.
|
||||
|
||||
2002-03-11 Richard Sandiford <rsandifo@redhat.com>
|
||||
|
||||
* defaults.h (LARGEST_EXPONENT_IS_NORMAL, ROUND_TOWARDS_ZERO): New.
|
||||
|
@ -929,6 +929,9 @@ debug_args[] =
|
||||
#endif
|
||||
#ifdef SDB_DEBUGGING_INFO
|
||||
{ "coff", SDB_DEBUG, 0, N_("Generate COFF format debug info") },
|
||||
#endif
|
||||
#ifdef VMS_DEBUGGING_INFO
|
||||
{ "vms", VMS_DEBUG, 0, N_("Generate VMS format debug info") },
|
||||
#endif
|
||||
{ 0, 0, 0, 0 }
|
||||
};
|
||||
|
@ -1636,7 +1636,7 @@ vmsdbgout_init (main_input_filename)
|
||||
|
||||
module_producer
|
||||
= (char *) xmalloc (strlen (language_string) + 1
|
||||
+ strlen (version_string + 1));
|
||||
+ strlen (version_string) + 1);
|
||||
sprintf (module_producer, "%s %s", language_string, version_string);
|
||||
|
||||
ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user