Commit 8337d1db by Marek Polacek Committed by Marek Polacek

re PR c/60139 (Imprecise column number for -pedantic on non-computable initializer element)

	PR c/60139
	* c-typeck.c (output_init_element): Pass OPT_Wpedantic to pedwarn
	and pedwarn_init.  Use loc insted of input_location.

	* gcc.dg/pr60139.c: New test.

From-SVN: r209926
parent c4bdc42f
2014-04-30 Marek Polacek <polacek@redhat.com>
PR c/60139
* c-typeck.c (output_init_element): Pass OPT_Wpedantic to pedwarn
and pedwarn_init. Use loc insted of input_location.
2014-04-30 Marek Polacek <polacek@redhat.com>
PR c/60351
* c-typeck.c (build_binary_op): Use location when warning about
shift count.
......
......@@ -8255,12 +8255,12 @@ output_init_element (location_t loc, tree value, tree origtype,
value = error_mark_node;
}
else if (require_constant_elements)
pedwarn (input_location, 0,
pedwarn (loc, OPT_Wpedantic,
"initializer element is not computable at load time");
}
else if (!maybe_const
&& (require_constant_value || require_constant_elements))
pedwarn_init (input_location, 0,
pedwarn_init (loc, OPT_Wpedantic,
"initializer element is not a constant expression");
/* Issue -Wc++-compat warnings about initializing a bitfield with
......
2014-04-30 Marek Polacek <polacek@redhat.com>
PR c/60139
* gcc.dg/pr60139.c: New test.
2014-04-30 Marek Polacek <polacek@redhat.com>
PR c/60351
* gcc.dg/pr60351.c: New test.
......
/* PR c/60139 */
/* { dg-do compile } */
/* { dg-options "-Wpedantic" } */
/* { dg-prune-output ".*near initialization for.*" } */
double sin (double);
void
fn (int *p)
{
int **a[] = { &p, /* { dg-warning "17:initializer element is not computable at load time" } */
(void *) 0, &p }; /* { dg-warning "28:initializer element is not computable at load time" } */
double d[] = { sin (1.0), /* { dg-warning "18:initializer element is not a constant expression" } */
8.8, sin (1.0), 2.6 }; /* { dg-warning "23:initializer element is not a constant expression" } */
}
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