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

  /src/external/gpl3/gcc.old/dist/gcc/
optabs-tree.cc 536 struct target_optabs *tmp_optabs = (struct target_optabs *) local
538 if (tmp_optabs)
539 memset (tmp_optabs, 0, sizeof (struct target_optabs));
541 tmp_optabs = ggc_cleared_alloc<target_optabs> ();
543 /* Generate a new set of optabs into tmp_optabs. */
544 init_all_optabs (tmp_optabs);
547 if (memcmp (tmp_optabs, this_target_optabs, sizeof (struct target_optabs)))
548 TREE_OPTIMIZATION_OPTABS (optnode) = tmp_optabs;
552 ggc_free (tmp_optabs);
  /src/external/gpl3/gcc/dist/gcc/
optabs-tree.cc 512 struct target_optabs *tmp_optabs = (struct target_optabs *) local
514 if (tmp_optabs)
515 memset (tmp_optabs, 0, sizeof (struct target_optabs));
517 tmp_optabs = ggc_cleared_alloc<target_optabs> ();
519 /* Generate a new set of optabs into tmp_optabs. */
520 init_all_optabs (tmp_optabs);
523 if (memcmp (tmp_optabs, this_target_optabs, sizeof (struct target_optabs)))
524 TREE_OPTIMIZATION_OPTABS (optnode) = tmp_optabs;
528 ggc_free (tmp_optabs);

Completed in 19 milliseconds