Home | History | Annotate | Download | only in gcc

Lines Matching defs:opt_idx

1099 /* Return true if NEXT_OPT_IDX cancels OPT_IDX.  Return false if the
1103 cancel_option (int opt_idx, int next_opt_idx, int orig_next_opt_idx)
1107 if (cl_options [next_opt_idx].neg_index == opt_idx)
1111 return cancel_option (opt_idx, cl_options [next_opt_idx].neg_index,
1136 unsigned int j, opt_idx, next_opt_idx;
1141 opt_idx = old_decoded_options[i].opt_index;
1142 switch (opt_idx)
1157 gcc_assert (opt_idx < cl_options_count);
1158 option = &cl_options[opt_idx];
1165 || (unsigned int) option->neg_index != opt_idx))
1182 if (cancel_option (opt_idx, next_opt_idx, next_opt_idx))
1739 /* Return 1 if option OPT_IDX is enabled in OPTS, 0 if it is disabled,
1744 option_enabled (int opt_idx, unsigned lang_mask, void *opts)
1746 const struct cl_option *option = &(cl_options[opt_idx]);
1756 void *flag_var = option_flag_var (opt_idx, optsg);