Home | History | Annotate | Download | only in gcc

Lines Matching defs:next_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)
1110 if (cl_options [next_opt_idx].neg_index != orig_next_opt_idx)
1111 return cancel_option (opt_idx, cl_options [next_opt_idx].neg_index,
1136 unsigned int j, opt_idx, next_opt_idx;
1172 next_opt_idx = old_decoded_options[j].opt_index;
1173 if (next_opt_idx >= cl_options_count)
1175 if (cl_options[next_opt_idx].neg_index < 0)
1177 if ((cl_options[next_opt_idx].flags & CL_JOINED)
1178 && (!cl_options[next_opt_idx].cl_reject_negative
1179 || ((unsigned int) cl_options[next_opt_idx].neg_index
1180 != next_opt_idx)))
1182 if (cancel_option (opt_idx, next_opt_idx, next_opt_idx))