From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16381 invoked by alias); 23 Jul 2003 18:50:44 -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 16373 invoked by alias); 23 Jul 2003 18:50:43 -0000 Date: Wed, 23 Jul 2003 18:50:00 -0000 From: "gcc-bugzilla at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org Message-ID: <20030723185042.11647.berberic@fmi.uni-passau.de> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c/11647] New: ice on __builtin_ia32_psllq X-Bugzilla-Reason: CC X-SW-Source: 2003-07/txt/msg02736.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=11647 Summary: ice on __builtin_ia32_psllq Product: gcc Version: 3.3 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: berberic at fmi dot uni-passau dot de CC: gcc-bugs at gcc dot gnu dot org GCC build triplet: i386-pc-linux-gnu GCC host triplet: i386-pc-linux-gnu GCC target triplet: i386-pc-linux-gnu gcc gives: X.c: In function `main': X.c:5: internal compiler error: in ix86_expand_binop_builtin, at config/i386/ i386.c:13029 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. with this code typedef int v8qi __attribute__ ((mode (V8QI))); int main() { v8qi t = (v8qi)__builtin_ia32_psllq((long long)t, (long long)32); return 0; } Environment: System: Linux avaloon 2.4.21 #2 SMP Mon Jun 16 22:37:26 CEST 2003 i686 unknown Architecture: i686 host: i386-pc-linux-gnu build: i386-pc-linux-gnu target: i386-pc-linux-gnu configured with: ../src/configure -v --enable-languages=c,c++,java,f77,pascal,objc,ada,treelang --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared --with-system-zlib --enable-nls --without-included-gettext --enable-__cxa_atexit --enable-clocale=gnu --enable-debug --enable-java-gc=boehm --enable-java-awt=xlib --enable-objc-gc i386-linux How-To-Repeat: compile above code