HomeSort by: relevance | last modified time | path
    Searched defs:existing_opt2 (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
lto-wrapper.cc 624 cl_decoded_option *existing_opt2 = NULL; local
628 existing_opt2 = &fdecoded_options[existing_opt2_index];
630 if (existing_opt == NULL && existing_opt2 == NULL)
632 else if (existing_opt != NULL && existing_opt2 == NULL)
640 else if (existing_opt == NULL && existing_opt2 != NULL)
644 existing_opt2->arg);
648 else if (strcmp (existing_opt->arg, existing_opt2->arg) != 0)
652 existing_opt->arg, existing_opt2->arg);
  /src/external/gpl3/gcc.old/dist/gcc/
lto-wrapper.cc 597 cl_decoded_option *existing_opt2 = NULL; local
601 existing_opt2 = &fdecoded_options[existing_opt2_index];
603 if (existing_opt == NULL && existing_opt2 == NULL)
605 else if (existing_opt != NULL && existing_opt2 == NULL)
613 else if (existing_opt == NULL && existing_opt2 != NULL)
617 existing_opt2->arg);
621 else if (strcmp (existing_opt->arg, existing_opt2->arg) != 0)
625 existing_opt->arg, existing_opt2->arg);

Completed in 25 milliseconds