From 9efdb4adb6c7ee2e70e9c071a662d910d30c5b5f Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Tue, 3 May 2011 10:18:29 +0000 Subject: re PR tree-optimization/48846 (Many -O2 -flto testsuite failures with -m32 -mavx) 2011-05-03 Richard Guenther PR lto/48846 * lto-streamer-in.c (unpack_ts_decl_common_value_fields): Stream decl_common.off_align instead of the derived DECL_OFFSET_ALIGN. * lto-streamer-out.c (pack_ts_decl_common_value_fields): Likewise. From-SVN: r173298 --- gcc/lto-streamer-out.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/lto-streamer-out.c') diff --git a/gcc/lto-streamer-out.c b/gcc/lto-streamer-out.c index 9594983..61ca69a 100644 --- a/gcc/lto-streamer-out.c +++ b/gcc/lto-streamer-out.c @@ -401,7 +401,7 @@ pack_ts_decl_common_value_fields (struct bitpack_d *bp, tree expr) { bp_pack_value (bp, DECL_PACKED (expr), 1); bp_pack_value (bp, DECL_NONADDRESSABLE_P (expr), 1); - bp_pack_value (bp, DECL_OFFSET_ALIGN (expr), 8); + bp_pack_value (bp, expr->decl_common.off_align, 8); } if (TREE_CODE (expr) == RESULT_DECL -- cgit v1.1