Commit 0cc4be67 by Tobias Schlüter Committed by Tobias Schlüter

trans-const.c (gfc_conv_mpz_to_tree): Change call to build_int_cst to…

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
parent 5d1f4b27
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
......
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