summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/c-lex.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 84fcf4254f7..eb2e7b158b8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2000-07-17 Joseph S. Myers <jsm28@cam.ac.uk>
+
+ * c-lex.c (yylex): Don't pedwarn for hexadecimal floating point
+ constants in C99 mode.
+
2000-07-17 Kazu Hirata <kazu@hxi.com>
* fold-const.c: Fix comment typos.
diff --git a/gcc/c-lex.c b/gcc/c-lex.c
index f47ddac4440..fe1d03f4420 100644
--- a/gcc/c-lex.c
+++ b/gcc/c-lex.c
@@ -1568,7 +1568,7 @@ yylex ()
{
if (c == '.')
{
- if (base == 16 && pedantic)
+ if (base == 16 && pedantic && !flag_isoc99)
pedwarn ("floating constant may not be in radix 16");
if (floatflag == TOO_MANY_POINTS)
/* We have already emitted an error. Don't need another. */