From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12140 invoked by alias); 10 May 2003 23:36:01 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 12042 invoked by uid 71); 10 May 2003 23:36:01 -0000 Date: Sat, 10 May 2003 23:36:00 -0000 Message-ID: <20030510233601.12039.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: "Alexander V. Inyukhin" Subject: Re: c/10735: Crash on incorrect type conversion Reply-To: "Alexander V. Inyukhin" X-SW-Source: 2003-05/txt/msg01027.txt.bz2 List-Id: The following reply was made to PR c/10735; it has been noted by GNATS. From: "Alexander V. Inyukhin" To: Dara Hazeghi Cc: gcc-gnats@gcc.gnu.org Subject: Re: c/10735: Crash on incorrect type conversion Date: Sun, 11 May 2003 03:34:10 +0400 On Sat, May 10, 2003 at 04:24:20PM -0700, Dara Hazeghi wrote: > http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit- > trail&database=gcc&pr=10735 > > Hello, > > you don't mention a platform in your bug report, nor do you give the > exact error message. Both are essential to tracking down your bug. > Could you please add them (just replying to this message will do so). > Also, if possible, can you try your testcase on gcc 3.2.3? Thanks, Sorry, I forget to add this. Reading specs from /opt/gcc-3.2.3/lib/gcc-lib/i686-pc-linux-gnu/3.2.3/specs Configured with: ./configure --prefix=/opt/gcc-3.2.3 --enable-__cxa_atexit --enable-threads=posix --enable-shared Thread model: posix gcc version 3.2.3 $ /opt/gcc-3.2.3/bin/gcc 1.c -mmmx 1.c: In function `test': 1.c:7: internal error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See for instructions. åxample below handled correctly by gcc: typedef int __v4hi __attribute__ ((__mode__ (__V4HI__))); __v4hi test3; void test() { long long test4; test4 = test3; // <== incompatible types in assignment if (test4 != 0) return; }