This is the mail archive of the fortran@gcc.gnu.org mailing list for the GNU Fortran project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[gfortran] Your patch broke bootstrap


Your patch collided with RTH's fix for integer conversion. I'll commit this as
obvious once testing passes.

- Tobi

2004-08-25

Index: trans-const.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/trans-const.c,v
retrieving revision 1.11
diff -u -p -r1.11 trans-const.c
--- trans-const.c       25 Aug 2004 09:52:47 -0000      1.11
+++ trans-const.c       25 Aug 2004 14:24:30 -0000
@@ -218,7 +218,7 @@ gfc_conv_mpz_to_tree (mpz_t i, int kind)
        }
     }

-  return build_int_cst (gfc_get_int_type (kind), low, high);
+  return build_int_cst_wide (gfc_get_int_type (kind), low, high);
 }

 /* Converts a real constant into backend form.  Uses an intermediate string


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]