frv.c (frv_init_cumulative_args): Fix wrong cast.
authorJan-Benedict Glaw <jbglaw@lug-owl.de>
Fri, 18 Oct 2013 10:04:27 +0000 (10:04 +0000)
committerJan-Benedict Glaw <jbglaw@gcc.gnu.org>
Fri, 18 Oct 2013 10:04:27 +0000 (10:04 +0000)
2013-10-18  Jan-Benedict Glaw  <jbglaw@lug-owl.de>

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

From-SVN: r203814

gcc/ChangeLog
gcc/config/frv/frv.c

index 28b8e495f2a3faa31b97f7a966216de24ea2822d..082dc54e76699c9016e19639ef38a6b0868f6bee 100644 (file)
@@ -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
index 41ae2bbfff6a9b66140fe360984330c6acee1624..bcd55111434acb69ff45cd813b207d140583ea50 100644 (file)
@@ -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)