[C++ Patch] PR 19618

Paolo Carlini paolo.carlini@oracle.com
Fri May 24 17:25:00 GMT 2013


Hi,

On 05/24/2013 06:12 PM, Jason Merrill wrote:
> On 05/24/2013 10:50 AM, Paolo Carlini wrote:
>> +           || ((TREE_CODE (type) == ENUMERAL_TYPE
>> +            && (tree_int_cst_lt
>> +            (TYPE_SIZE (ENUM_UNDERLYING_TYPE (type)), w)))
>> +           || (TREE_CODE (type) == BOOLEAN_TYPE
>> +               && tree_int_cst_lt (TYPE_SIZE (type), w))))
>
> The size of the enum underlying type is the same as the size of the 
> enum itself, so I don't think you need to handle enum and bool 
> differently here.
Yeah. Sorry for wasting your time on this. I'm finishing testing the 
below then.

Thanks,
Paolo.

/////////////////////
-------------- next part --------------
Index: cp/class.c
===================================================================
--- cp/class.c	(revision 199302)
+++ cp/class.c	(working copy)
@@ -3140,9 +3140,12 @@ check_bitfield_decl (tree field)
 	  error ("zero width for bit-field %q+D", field);
 	  w = error_mark_node;
 	}
-      else if (compare_tree_int (w, TYPE_PRECISION (type)) > 0
-	       && TREE_CODE (type) != ENUMERAL_TYPE
-	       && TREE_CODE (type) != BOOLEAN_TYPE)
+      else if ((TREE_CODE (type) != ENUMERAL_TYPE
+		&& TREE_CODE (type) != BOOLEAN_TYPE
+		&& compare_tree_int (w, TYPE_PRECISION (type)) > 0)
+	       || ((TREE_CODE (type) == ENUMERAL_TYPE
+		    || TREE_CODE (type) == BOOLEAN_TYPE)
+		   && tree_int_cst_lt (TYPE_SIZE (type), w)))
 	warning (0, "width of %q+D exceeds its type", field);
       else if (TREE_CODE (type) == ENUMERAL_TYPE
 	       && (0 > (compare_tree_int
Index: testsuite/g++.dg/expr/bitfield12.C
===================================================================
--- testsuite/g++.dg/expr/bitfield12.C	(revision 0)
+++ testsuite/g++.dg/expr/bitfield12.C	(working copy)
@@ -0,0 +1,19 @@
+// PR c++/19618
+
+struct bset1 {
+  bool bit : sizeof(bool) * __CHAR_BIT__ + 1;  // { dg-warning "exceeds" }
+};
+
+enum E {};
+
+struct bset2 {
+  E bit : sizeof(E) * __CHAR_BIT__ + 1;        // { dg-warning "exceeds" }
+};
+
+struct bset3 {
+  bool bit : sizeof(bool) * __CHAR_BIT__;
+};
+
+struct bset4 {
+  E bit : sizeof(E) * __CHAR_BIT__;
+};


More information about the Gcc-patches mailing list