From ae9331288f1d89671a60000b28e04e182378eb14 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Manuel=20L=C3=B3pez-Ib=C3=A1=C3=B1ez?= Date: Fri, 27 Apr 2012 08:21:49 +0000 Subject: [PATCH] re PR regression/53130 (gcc.dg/20011021-1.c, gcc.dg/m-un-2.c, gcc.dg/missing-field-init-2.c) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 2012-04-25 Manuel López-Ibáñez PR c/53130 * c-typeck.c (pop_init_level): Use %qD instead of %qT. From-SVN: r186896 --- gcc/ChangeLog | 5 +++++ gcc/c-typeck.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c4865775f62..5ed7c475b11 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-04-25 Manuel López-Ibáñez + + PR c/53130 + * c-typeck.c (pop_init_level): Use %qD instead of %qT. + 2012-04-27 Tom de Vries PR tree-optimization/51879 diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 967e8f044c9..e87cb87c072 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -7065,7 +7065,7 @@ pop_init_level (int implicit, struct obstack * braced_init_obstack) constructor_unfilled_fields, constructor_type)) inform (DECL_SOURCE_LOCATION (constructor_unfilled_fields), - "%qT declared here", constructor_unfilled_fields); + "%qD declared here", constructor_unfilled_fields); } } -- 2.30.2