diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2003-11-05 17:53:04 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2003-11-05 17:53:04 +0000 |
commit | 0a49d02ccb882d750c5197c82ff6a19957fce294 (patch) | |
tree | 4bea129d1bd8ed20bd84ac70ac8027d3ce61a527 /gcc | |
parent | db9fd03ea1d98dfcabe2c0369d000094bd4dd686 (diff) | |
download | gcc-0a49d02ccb882d750c5197c82ff6a19957fce294.zip gcc-0a49d02ccb882d750c5197c82ff6a19957fce294.tar.gz gcc-0a49d02ccb882d750c5197c82ff6a19957fce294.tar.bz2 |
c-typeck.c (pedantic_lvalue_warning): Deprecate use of conditional expressions as lvalues.
* c-typeck.c (pedantic_lvalue_warning): Deprecate use of
conditional expressions as lvalues.
testsuite:
* gcc.dg/cond-lvalue-1.c: New test.
From-SVN: r73273
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/c-typeck.c | 3 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/cond-lvalue-1.c | 12 |
4 files changed, 22 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c2c2da9..1cd17d9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-11-05 Joseph S. Myers <jsm@polyomino.org.uk> + + * c-typeck.c (pedantic_lvalue_warning): Deprecate use of + conditional expressions as lvalues. + 2003-11-05 Kazu Hirata <kazu@cs.umass.edu> * tsystem.h: Add the prototype of strlen. diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 598e249..81eee37 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -2588,8 +2588,7 @@ pedantic_lvalue_warning (enum tree_code code) switch (code) { case COND_EXPR: - if (pedantic) - pedwarn ("ISO C forbids use of conditional expressions as lvalues"); + pedwarn ("use of conditional expressions as lvalues is deprecated"); break; case COMPOUND_EXPR: if (pedantic) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7420ded..87302ad 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-11-05 Joseph S. Myers <jsm@polyomino.org.uk> + + * gcc.dg/cond-lvalue-1.c: New test. + 2003-11-05 Gernot Hillier <gernot.hillier@siemens.com> * g++.old-deja/g++.pt/asm1.C: Enable for e.g. x86_64-*-linux-gnu. diff --git a/gcc/testsuite/gcc.dg/cond-lvalue-1.c b/gcc/testsuite/gcc.dg/cond-lvalue-1.c new file mode 100644 index 0000000..1765546 --- /dev/null +++ b/gcc/testsuite/gcc.dg/cond-lvalue-1.c @@ -0,0 +1,12 @@ +/* Test for deprecation of conditional expressions as lvalues. */ +/* Origin: Joseph Myers <jsm@polyomino.org.uk> */ +/* { dg-do compile } */ +/* { dg-options "" } */ + +int x, y, z; + +void +foo (void) +{ + (x ? y : z) = 1; /* { dg-warning "lvalue" "conditional expression as lvalue deprecated" } */ +} |