Commit 66bc6a9e by Yufeng Zhang Committed by Yufeng Zhang

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
parent 39ec0d29
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> 2014-01-20 Alex Velenko <Alex.Velenko@arm.com>
* lib/target-supports.exp * lib/target-supports.exp
......
...@@ -6,7 +6,7 @@ enum tree_code_class { tcc_type, tcc_other }; ...@@ -6,7 +6,7 @@ enum tree_code_class { tcc_type, tcc_other };
extern enum tree_code_class tree_code_type[]; extern enum tree_code_class tree_code_type[];
struct tree_base { struct tree_base {
enum tree_code code : 16; enum tree_code code : 8;
unsigned unsigned_flag : 1; unsigned unsigned_flag : 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