From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7441 invoked by alias); 24 Jul 2003 17:34:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 7428 invoked by uid 48); 24 Jul 2003 17:34:44 -0000 Date: Thu, 24 Jul 2003 17:34:00 -0000 From: "jashepherd at usa dot net" To: gcc-bugs@gcc.gnu.org Message-ID: <20030724173442.11663.jashepherd@usa.net> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c/11663] New: gcc ignores the cast and emits a warning X-Bugzilla-Reason: CC X-SW-Source: 2003-07/txt/msg02905.txt.bz2 List-Id: PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11663 Summary: gcc ignores the cast and emits a warning Product: gcc Version: 2.96 (redhat) Status: UNCONFIRMED Severity: minor Priority: P2 Component: c AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: jashepherd at usa dot net CC: gcc-bugs at gcc dot gnu dot org gcc -v Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs gcc version 2.96 20000731 (Red Hat Linux 7.2 2.96-116.7.2) /* gcc ignores the cast and emits a warning gcc bug.c -funsigned-char bug.c: In function `main': bug.c:13: warning: comparison is always true due to limited range of data type */ char trans_ind = 3; int main(int argc, char *argv[]) { if ((short)trans_ind >= 0 && (short)trans_ind <= 3) printf("Yes\n"); else printf("No\n"); return(0); }