Searched refs:tmpvar (Results 1 - 6 of 6) sorted by relevance

/haiku-buildtools/gcc/gcc/fortran/
H A Dtrans.c519 tree tmpvar = NULL; local
526 tmpvar = gfc_create_var (boolean_type_node, "print_warning");
527 TREE_STATIC (tmpvar) = 1;
528 DECL_INITIAL (tmpvar) = boolean_true_node;
529 gfc_add_expr_to_block (pblock, tmpvar);
547 gfc_add_modify (&block, tmpvar, boolean_false_node);
559 long_integer_type_node, tmpvar, cond);
H A Dtrans-io.c697 tree tmpvar = gfc_create_var (TREE_TYPE (TREE_TYPE (p->field)), local
703 gfc_add_modify (block, tmpvar,
704 build_int_cst (TREE_TYPE (tmpvar), LIBERROR_OK));
706 addr = gfc_build_addr_expr (NULL_TREE, tmpvar);
708 tmp = convert (TREE_TYPE (se.expr), tmpvar);
H A Dtrans-stmt.c3320 tree tmpvar; local
3335 tmpvar = gfc_create_var (type, "temp");
3340 tmpvar = gfc_create_var (build_pointer_type (type), "temp");
3341 *pdata = convert (pvoid_type_node, tmpvar);
3343 tmp = gfc_call_malloc (pblock, TREE_TYPE (tmpvar), bytesize);
3344 gfc_add_modify (pblock, tmpvar, tmp);
3346 return tmpvar;
H A Dtrans-expr.c2609 values are put in tmpvar. The function returns tmpvar[1] ** n. */
2611 gfc_conv_powi (gfc_se * se, unsigned HOST_WIDE_INT n, tree * tmpvar) argument
2620 if (tmpvar[n])
2621 return tmpvar[n];
2623 op0 = gfc_conv_powi (se, n - powi_table[n], tmpvar);
2624 op1 = gfc_conv_powi (se, powi_table[n], tmpvar);
2629 op0 = gfc_conv_powi (se, n - digit, tmpvar);
2630 op1 = gfc_conv_powi (se, digit, tmpvar);
2634 op0 = gfc_conv_powi (se, n >> 1, tmpvar);
[all...]
/haiku-buildtools/legacy/gcc/gcc/ch/
H A Ddecl.c1020 tree tmpvar = get_unique_identifier ("NONVALINIT");
1025 build_loop_iterator (tmpvar, expr, NULL_TREE, NULL_TREE, 0, 1, 0);
1028 tmpvar = lookup_name (tmpvar);
1029 type = TREE_TYPE (tmpvar);
1033 res |= init_nonvalue_struct (tmpvar);
1035 res |= init_nonvalue_array (tmpvar);
1013 tree tmpvar = get_unique_identifier ("NONVALINIT"); local
H A Dexpr.c1563 tree args, tmpvar, fncall, ptr, outlist = NULL_TREE;
1603 tmpvar = decl_temp1 (get_unique_identifier (chill_name),
1608 build_chill_modify_expr (tmpvar, fncall), outlist);
1614 tree_cons (NULL_TREE, convert (ptr_type_node, tmpvar),
1623 build_chill_modify_expr (build_chill_indirect_ref (tmpvar, NULL_TREE, 0),
1627 outlist = tree_cons (NULL_TREE, tmpvar, outlist);
1555 tree args, tmpvar, fncall, ptr, outlist = NULL_TREE; local

Completed in 199 milliseconds