Commit 4caaa462 by Richard Biener Committed by Richard Biener

re PR lto/55021 (The tests gfortran.dg/integer_exponentiation_5.F90 and…

re PR lto/55021 (The tests gfortran.dg/integer_exponentiation_5.F90 and masklr_1.F90 are miscompiled with -flto after revision 192529)

2012-10-22  Richard Biener  <rguenther@suse.de>

	PR lto/55021
	* tree-streamer-in.c (unpack_ts_int_cst_value_fields): Remove
	bogus truncations.

From-SVN: r192691
parent f5798785
2012-10-22 Richard Biener <rguenther@suse.de>
PR lto/55021
* tree-streamer-in.c (unpack_ts_int_cst_value_fields): Remove
bogus truncations.
2012-10-22 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.c (memory_address_length): Assert that non-null
......@@ -146,8 +146,8 @@ unpack_ts_base_value_fields (struct bitpack_d *bp, tree expr)
static void
unpack_ts_int_cst_value_fields (struct bitpack_d *bp, tree expr)
{
TREE_INT_CST_LOW (expr) = (unsigned) bp_unpack_var_len_unsigned (bp);
TREE_INT_CST_HIGH (expr) = (unsigned) bp_unpack_var_len_int (bp);
TREE_INT_CST_LOW (expr) = bp_unpack_var_len_unsigned (bp);
TREE_INT_CST_HIGH (expr) = bp_unpack_var_len_int (bp);
}
......
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