Commit 915efd1f by Georg-Johann Lay Committed by Georg-Johann Lay

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
parent 0237949a
2012-09-25 Georg-Johann Lay <avr@gjlay.de>
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 <rguenther@suse.de>
* lto-symtab.c (lto_symtab_merge_decls_1): Properly merge
......
......@@ -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;
......
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