mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
sim: ppc: drop support for dgen -L option
Nothing passes this to dgen, and even if it did, nothing would happen because the generated spreg.[ch] files don't include any references back to the original data table. So drop it to simplify.
This commit is contained in:
@ -292,10 +292,9 @@ main(int argc,
|
|||||||
printf("-n <file-name> Use this as cpp line numbering name\n");
|
printf("-n <file-name> Use this as cpp line numbering name\n");
|
||||||
printf("-h Output header file\n");
|
printf("-h Output header file\n");
|
||||||
printf("-p <spreg-file> Output spreg.h(P) or spreg.c(p)\n");
|
printf("-p <spreg-file> Output spreg.h(P) or spreg.c(p)\n");
|
||||||
printf("-L Suppress cpp line numbering in output files\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
while ((ch = getopt_long (argc, argv, "hLsn:r:p:", longopts, NULL))
|
while ((ch = getopt_long (argc, argv, "hsn:r:p:", longopts, NULL))
|
||||||
!= -1)
|
!= -1)
|
||||||
{
|
{
|
||||||
#if 0 /* For debugging. */
|
#if 0 /* For debugging. */
|
||||||
@ -311,9 +310,6 @@ main(int argc,
|
|||||||
case 'n':
|
case 'n':
|
||||||
real_file_name = strdup(optarg);
|
real_file_name = strdup(optarg);
|
||||||
break;
|
break;
|
||||||
case 'L':
|
|
||||||
file_references = lf_omit_references;
|
|
||||||
break;
|
|
||||||
case 'h':
|
case 'h':
|
||||||
is_header = 1;
|
is_header = 1;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user