c-typeck.c (parser_build_binary_op): Don't call the function unsigned_conversion_warn...
authorRoger Sayle <roger@eyesopen.com>
Mon, 1 May 2006 16:51:19 +0000 (16:51 +0000)
committerRoger Sayle <sayle@gcc.gnu.org>
Mon, 1 May 2006 16:51:19 +0000 (16:51 +0000)
commit0f57299d37b292bdfdc4e2a0d0fe00935b8c1931
tree5fe7571023d4ea5ca8d0e554a9a317466e1d435f
parentf0913ab8d6b3990d68fc498fd2f9d6407fd10536
c-typeck.c (parser_build_binary_op): Don't call the function unsigned_conversion_warning to spot operand/result type...

* c-typeck.c (parser_build_binary_op): Don't call the function
unsigned_conversion_warning to spot operand/result type overflow.
(build_binary_op): Instead, call convert_and_check instead of
convert to report the problem when the operands are promoted.
* c-common.c (unsigned_conversion_warning): Make static.
* c-common.h (unsigned_conversion_warning): Delete prototype.

* gcc.dg/Wconversion-3.c: New test case.
* gcc.dg/Wconversion-4.c: Likewise.

Co-Authored-By: Joseph Myers <joseph@codesourcery.com>
From-SVN: r113418
gcc/ChangeLog
gcc/c-common.c
gcc/c-common.h
gcc/c-typeck.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/Wconversion-3.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/Wconversion-4.c [new file with mode: 0644]