From: Georg-Johann Lay Date: Tue, 25 Sep 2012 12:10:39 +0000 (+0000) Subject: re PR other/54701 (double_int conversion breaks avr build) X-Git-Tag: misc/gccgo-go1_1_2~652 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=915efd1fc987429382050fd69bf040229b38c9a5;p=thirdparty%2Fgcc.git re PR other/54701 (double_int conversion breaks avr build) PR other/54701 * config/avr/avr.c (avr_map_decompose): Use double_int::from_uhwi instead of uhwi_to_double_int. From-SVN: r191701 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2bec49a6a142..c50d18243040 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-09-25 Georg-Johann Lay + + PR other/54701 + * config/avr/avr.c (avr_map_decompose): Use double_int::from_uhwi + instead of uhwi_to_double_int. + 2012-09-25 Richard Guenther * lto-symtab.c (lto_symtab_merge_decls_1): Properly merge diff --git a/gcc/config/avr/avr.c b/gcc/config/avr/avr.c index ea36a54fcff3..78fb3127fd86 100644 --- a/gcc/config/avr/avr.c +++ b/gcc/config/avr/avr.c @@ -10952,7 +10952,7 @@ avr_map_decompose (double_int f, const avr_map_op_t *g, bool val_const_p) int i; bool val_used_p = 0 != avr_map_metric (f, MAP_MASK_PREIMAGE_F); avr_map_op_t f_ginv = *g; - double_int ginv = uhwi_to_double_int (g->ginv); + double_int ginv = double_int::from_uhwi (g->ginv); f_ginv.cost = -1;