diff mbox

[C++] PR 54583

Message ID 50906671.5050706@oracle.com
State New
Headers show

Commit Message

Paolo Carlini Oct. 30, 2012, 11:44 p.m. UTC
Hi,

this diagnostic issue is about spurious "value computed is not used" 
warnings with VLAs, emitted by convert_to_void (on the TYPE_SIZE, a 
MULT_EXPR): the warning is already gated by !TREE_NO_WARNING (expr) thus 
setting it at the end of build_cplus_array_type seems a rather 
straightforward fix. The below, which regtests fine, simply acts on any 
MULT_EXPR as TYPE_SIZE, which I think should be fine, but, in case the 
idea is basically Ok, we could also consider the more complex but more 
sophisticated variably_modified_type_p?

Thanks,
Paolo.

/////////////////////
/cp
2012-10-30  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/54583
	* tree.c (build_cplus_array_type): Set TREE_NO_WARNING on the
	TYPE_SIZE of VLAs.

/testsuite
2012-10-30  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/54583
	* g++.dg/ext/vla13.C: New.

Comments

Jason Merrill Oct. 31, 2012, 1:50 p.m. UTC | #1
On 10/30/2012 07:44 PM, Paolo Carlini wrote:
> straightforward fix. The below, which regtests fine, simply acts on any
> MULT_EXPR as TYPE_SIZE, which I think should be fine, but, in case the
> idea is basically Ok, we could also consider the more complex but more
> sophisticated variably_modified_type_p?

I think I'd use EXPR_P rather than check for a particular tree code.

Jason
diff mbox

Patch

Index: testsuite/g++.dg/ext/vla13.C
===================================================================
--- testsuite/g++.dg/ext/vla13.C	(revision 0)
+++ testsuite/g++.dg/ext/vla13.C	(working copy)
@@ -0,0 +1,8 @@ 
+// PR c++/54583
+// { dg-options "-Wunused-value" }
+
+void fred()
+{
+  int n=10;
+  double (*x)[n];
+}
Index: cp/tree.c
===================================================================
--- cp/tree.c	(revision 192997)
+++ cp/tree.c	(working copy)
@@ -824,6 +824,10 @@  build_cplus_array_type (tree elt_type, tree index_
 	}
     }
 
+  /* Avoid spurious warnings with VLAs (c++/54583).  */
+  if (TYPE_SIZE (t) && TREE_CODE (TYPE_SIZE (t)) == MULT_EXPR)
+    TREE_NO_WARNING (TYPE_SIZE (t)) = 1;
+
   /* Push these needs up so that initialization takes place
      more easily.  */
   TYPE_NEEDS_CONSTRUCTING (t)