Commit 2f6f8824 by Richard Stallman

(integer_overflow): Do nothing unless pedantic.

From-SVN: r2538
parent cfb2c0b1
...@@ -847,7 +847,8 @@ yyerror (s) ...@@ -847,7 +847,8 @@ yyerror (s)
static void static void
integer_overflow () integer_overflow ()
{ {
pedwarn ("integer overflow in preprocessor expression"); if (pedantic)
pedwarn ("integer overflow in preprocessor expression");
} }
static long static long
......
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