trans-const.c (gfc_conv_mpz_to_tree): Change call to build_int_cst to build_int_cst_wide in accordance to Nathan's...
* trans-const.c (gfc_conv_mpz_to_tree): Change call to build_int_cst to build_int_cst_wide in accordance to Nathan's previous patch. From-SVN: r86549
This commit is contained in:
parent
5d1f4b27ab
commit
0cc4be6760
|
@ -1,3 +1,9 @@
|
|||
2004-08-25 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
|
||||
|
||||
* trans-const.c (gfc_conv_mpz_to_tree): Change call to
|
||||
build_int_cst to build_int_cst_wide in accordance to Nathan's
|
||||
previous patch.
|
||||
|
||||
2004-08-25 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* trans-array.c (gfc_trans_array_constructor_value): Adjust
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue