Commit 8ad8afaf by Jan-Benedict Glaw Committed by Jan-Benedict Glaw

frv.c (frv_init_cumulative_args): Fix wrong cast.

2013-10-18  Jan-Benedict Glaw  <jbglaw@lug-owl.de>

	* config/frv/frv.c (frv_init_cumulative_args): Fix wrong cast.

From-SVN: r203814
parent c0e081a9
2013-10-18 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* config/frv/frv.c (frv_init_cumulative_args): Fix wrong cast.
2013-10-18 Richard Biener <rguenther@suse.de>
* stor-layout.c (layout_type): Do not change TYPE_PRECISION
......
......@@ -3094,7 +3094,7 @@ frv_init_cumulative_args (CUMULATIVE_ARGS *cum,
{
tree ret_type = TREE_TYPE (fntype);
fprintf (stderr, " return=%s,",
get_tree_code_name ((int)TREE_CODE (ret_type)));
get_tree_code_name (TREE_CODE (ret_type)));
}
if (libname && GET_CODE (libname) == SYMBOL_REF)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment