Commit 93cc1c69 by Joseph Myers Committed by Joseph Myers

c-typeck.c (build_unary_op): If pedantic, pedwarn for increment and decrement of complex types.

	* 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.

From-SVN: r37164
parent 510fbf86
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
......
......@@ -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);
......
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.
......
/* 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;
}
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