ra1.C (struct tree_base): Change the width of the 'code' bitfield from 16 to 8.
authorYufeng Zhang <yufeng.zhang@arm.com>
Mon, 20 Jan 2014 18:42:50 +0000 (18:42 +0000)
committerYufeng Zhang <yufeng@gcc.gnu.org>
Mon, 20 Jan 2014 18:42:50 +0000 (18:42 +0000)
gcc/testsuite

* g++.dg/debug/ra1.C (struct tree_base): Change the width of
the 'code' bitfield from 16 to 8.

From-SVN: r206853

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/debug/ra1.C

index 21ab78194c183c028ed8cc3993676db832e232be..4c312c98eb168aa529e5c99452a0931048b881ba 100644 (file)
@@ -1,3 +1,8 @@
+2014-01-20  Yufeng Zhang  <yufeng.zhang@arm.com>
+
+       * g++.dg/debug/ra1.C (struct tree_base): Change the width of
+       the 'code' bitfield from 16 to 8.
+
 2014-01-20  Alex Velenko  <Alex.Velenko@arm.com>
 
        * lib/target-supports.exp
index b6f7bfc588d8729f7b544264b6540ea9d993f0c4..5a6811388fec345fa29e97e0ea8803298315b6fd 100644 (file)
@@ -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;
 };