diff options
author | Janis Johnson <janis187@us.ibm.com> | 2007-05-14 23:45:40 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2007-05-14 23:45:40 +0000 |
commit | 5a6bb57eb9ad3397408aedca5c362ef36340a907 (patch) | |
tree | df0bccc33a1c52f690ba0aed1805effa9212b0ad /gcc | |
parent | 30e04921873057fd9c85458127e51862d0cf2304 (diff) | |
download | gcc-5a6bb57eb9ad3397408aedca5c362ef36340a907.zip gcc-5a6bb57eb9ad3397408aedca5c362ef36340a907.tar.gz gcc-5a6bb57eb9ad3397408aedca5c362ef36340a907.tar.bz2 |
expr.c (cpp_classify_number): Warn about dfp constant for -pedantic.
libcpp/
* expr.c (cpp_classify_number): Warn about dfp constant for -pedantic.
gcc/testsuite/
* gcc.dg/fltconst-pedantic-dfp.c: New test.
From-SVN: r124731
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/fltconst-pedantic-dfp.c | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b195815..159cee5 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,7 @@ 2007-05-14 Janis Johnson <janis187@us.ibm.com> + * expr.c (cpp_classify_number): Warn about dfp constant for -pedantic. + PR c/31924 * gcc.dg/fltconst-1.c: New test. diff --git a/gcc/testsuite/gcc.dg/fltconst-pedantic-dfp.c b/gcc/testsuite/gcc.dg/fltconst-pedantic-dfp.c new file mode 100644 index 0000000..d0d1c4c --- /dev/null +++ b/gcc/testsuite/gcc.dg/fltconst-pedantic-dfp.c @@ -0,0 +1,6 @@ +/* { dg-do compile } */ +/* { dg-options "-pedantic" } */ + +double a = 1.dl; /* { dg-warning "decimal float" } */ +double b = 1.df; /* { dg-warning "decimal float" } */ +double c = 1.dd; /* { dg-warning "decimal float" } */ |