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
This commit is contained in:
parent
c0e081a968
commit
8ad8afaf72
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
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)
|
||||
|
|
Loading…
Add table
Reference in a new issue