Commit 1682dbb1 by Douglas B Rupp Committed by Richard Kenner

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
parent 884523df
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.
......
......@@ -930,6 +930,9 @@ debug_args[] =
#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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment