Home | History | Annotate | Line # | Download | only in emulparams
      1 PARSE_AND_LIST_OPTIONS_X86_64_LEVEL_REPORT='
      2   fprintf (file, _("\
      3   -z isa-level-report=[none|all|needed|used] (default: none)\n\
      4                               Report x86-64 ISA level\n"));
      5 '
      6 PARSE_AND_LIST_ARGS_CASE_Z_X86_64_LEVEL_REPORT='
      7       else if (strncmp (optarg, "isa-level-report=", 17) == 0)
      8 	{
      9 	  if (strcmp (optarg + 17, "none") == 0)
     10 	    params.isa_level_report = isa_level_report_none;
     11 	  else if (strcmp (optarg + 17, "all") == 0)
     12 	    params.isa_level_report = (isa_level_report_needed
     13 				       | isa_level_report_used);
     14 	  else if (strcmp (optarg + 17, "needed") == 0)
     15 	    params.isa_level_report = isa_level_report_needed;
     16 	  else if (strcmp (optarg + 17, "used") == 0)
     17 	    params.isa_level_report = isa_level_report_used;
     18 	  else
     19 	    fatal (_("%P: invalid option for -z isa-level-report=: %s\n"),
     20 		   optarg + 17);
     21 	}
     22 '
     23 
     24 PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_X86_64_LEVEL_REPORT"
     25 PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_X86_64_LEVEL_REPORT"
     26