From: Yufeng Zhang Date: Mon, 20 Jan 2014 18:42:50 +0000 (+0000) Subject: ra1.C (struct tree_base): Change the width of the 'code' bitfield from 16 to 8. X-Git-Tag: releases/gcc-4.9.0~1513 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=66bc6a9ecc5cc4aba9473abdc54930dfdcb1358e;p=thirdparty%2Fgcc.git ra1.C (struct tree_base): Change the width of the 'code' bitfield from 16 to 8. gcc/testsuite * g++.dg/debug/ra1.C (struct tree_base): Change the width of the 'code' bitfield from 16 to 8. From-SVN: r206853 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 21ab78194c18..4c312c98eb16 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2014-01-20 Yufeng Zhang + + * g++.dg/debug/ra1.C (struct tree_base): Change the width of + the 'code' bitfield from 16 to 8. + 2014-01-20 Alex Velenko * lib/target-supports.exp diff --git a/gcc/testsuite/g++.dg/debug/ra1.C b/gcc/testsuite/g++.dg/debug/ra1.C index b6f7bfc588d8..5a6811388fec 100644 --- a/gcc/testsuite/g++.dg/debug/ra1.C +++ b/gcc/testsuite/g++.dg/debug/ra1.C @@ -6,7 +6,7 @@ enum tree_code_class { tcc_type, tcc_other }; extern enum tree_code_class tree_code_type[]; struct tree_base { - enum tree_code code : 16; + enum tree_code code : 8; unsigned unsigned_flag : 1; };