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:
Douglas B Rupp 2002-03-11 07:42:08 -05:00 committed by Richard Kenner
parent 884523df8d
commit 1682dbb1d7
3 changed files with 9 additions and 1 deletions

View File

@ -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.

View File

@ -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 }
};

View File

@ -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);