summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2000-10-31 20:38:04 +0000
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2000-10-31 20:38:04 +0000
commit0bcef9f8db69d7a20614f48b5984367ee2dfbd47 (patch)
treed9a7f79a901c7d085dbabeba47b30815be00d912
parent984399896635701cea6dfcc1e04f823993629c24 (diff)
downloadppe42-gcc-0bcef9f8db69d7a20614f48b5984367ee2dfbd47.tar.gz
ppe42-gcc-0bcef9f8db69d7a20614f48b5984367ee2dfbd47.zip
* c-typeck.c (build_unary_op): If pedantic, pedwarn for increment
and decrement of complex types. testsuite: * gcc.dg/c99-complex-2.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37164 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/c-typeck.c3
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.dg/c99-complex-2.c22
4 files changed, 34 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index fcc65c8b8f2..7c617b8b494 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2000-10-31 Joseph S. Myers <jsm28@cam.ac.uk>
+
+ * c-typeck.c (build_unary_op): If pedantic, pedwarn for increment
+ and decrement of complex types.
+
2000-10-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* builtins.c (expand_builtin_fputs): When deleting NOP calls to
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c
index a118619ffac..acc2840ee73 100644
--- a/gcc/c-typeck.c
+++ b/gcc/c-typeck.c
@@ -2909,6 +2909,9 @@ build_unary_op (code, xarg, noconvert)
{
tree real, imag;
+ if (pedantic)
+ pedwarn ("ISO C does not support `++' and `--' on complex types");
+
arg = stabilize_reference (arg);
real = build_unary_op (REALPART_EXPR, arg, 1);
imag = build_unary_op (IMAGPART_EXPR, arg, 1);
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 6097ca2cc2e..0d714d8d2c3 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2000-10-31 Joseph S. Myers <jsm28@cam.ac.uk>
+
+ * gcc.dg/c99-complex-2.c: New test.
+
2000-10-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.c-torture/execute/stdio-opt-1.c: New test.
diff --git a/gcc/testsuite/gcc.dg/c99-complex-2.c b/gcc/testsuite/gcc.dg/c99-complex-2.c
new file mode 100644
index 00000000000..078e92ae909
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/c99-complex-2.c
@@ -0,0 +1,22 @@
+/* Test for _Complex: in C99 only. Test for increment and decrement. */
+/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
+/* { dg-do compile } */
+/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
+
+/* Use of ++ and -- on complex types (both prefix and postfix) is a
+ C99 constraint violation (6.5.2.4p1, 6.5.3.1p1).
+*/
+
+_Complex double
+foo (_Complex double z)
+{
+ z++; /* { dg-bogus "warning" "warning in place of error" } */
+ /* { dg-error "complex" "postinc" { target *-*-* } 13 } */
+ ++z; /* { dg-bogus "warning" "warning in place of error" } */
+ /* { dg-error "complex" "preinc" { target *-*-* } 15 } */
+ z--; /* { dg-bogus "warning" "warning in place of error" } */
+ /* { dg-error "complex" "postdec" { target *-*-* } 17 } */
+ --z; /* { dg-bogus "warning" "warning in place of error" } */
+ /* { dg-error "complex" "predec" { target *-*-* } 19 } */
+ return z;
+}
OpenPOWER on IntegriCloud