toplev.c (independent_decode_option): Re-add -aux-info option handling.

* toplev.c (independent_decode_option): Re-add -aux-info option
	handling.

From-SVN: r48329
This commit is contained in:
Jakub Jelinek 2001-12-27 18:22:00 +01:00 committed by Jakub Jelinek
parent de5b49f224
commit 3db83e3261
2 changed files with 29 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2001-12-27 Jakub Jelinek <jakub@redhat.com>
* toplev.c (independent_decode_option): Re-add -aux-info option
handling.
Thu Dec 27 09:50:44 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* integrate.c (copy_insn_notes): Don't adjust REG_EH_REGION note

View File

@ -4235,6 +4235,30 @@ independent_decode_option (argc, argv)
return decode_W_option (arg + 1);
break;
case 'a':
if (!strncmp (arg, "aux-info", 8))
{
if (arg[8] == '\0')
{
if (argc == 1)
return 0;
aux_info_file_name = argv[1];
flag_gen_aux_info = 1;
return 2;
}
else if (arg[8] == '=')
{
aux_info_file_name = arg + 9;
flag_gen_aux_info = 1;
}
else
return 0;
}
else
return 0;
break;
case 'o':
if (arg[1] == 0)
{