* gimplify.c (create_tmp_var_raw): Don't name otherwise-nameless
temporary variables.
From-SVN: r87335
2004-09-10 Geoffrey Keating <geoffk@apple.com>
+ * gimplify.c (create_tmp_var_raw): Don't name otherwise-nameless
+ temporary variables.
+
* dbxout.c (dbxout_block): Update for
current_function_func_begin_label a string.
* dwarf2out.c (dwarf2out_begin_prologue): Likewise.
new_type = build_type_variant (type, 0, 0);
TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type);
- tmp_var = build_decl (VAR_DECL, create_tmp_var_name (prefix), type);
+ tmp_var = build_decl (VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
+ type);
/* The variable was declared by the compiler. */
DECL_ARTIFICIAL (tmp_var) = 1;