From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10308 invoked by alias); 16 Jul 2007 09:12:58 -0000 Received: (qmail 10157 invoked by uid 48); 16 Jul 2007 09:12:50 -0000 Date: Mon, 16 Jul 2007 09:12:00 -0000 Subject: [Bug java/32774] New: GCJ dumps core when semicolon placed to wrong place (x86, arm_le) X-Bugzilla-Reason: CC Message-ID: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "cyberflex at mail dot ru" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2007-07/txt/msg01685.txt.bz2 This code makes GCJ-4.1 core dump because of presence unneeded (or incorrect) ";" symbol after the method definition close brace: interface MyInterface { public Object dumpGCJCoreAtCompilation(); } class MyClass implements MyInterface{ public Object dumpGCJCoreAtCompilation(){return null;}; } This code compiled fine: class MyClass { public Object dumpGCJCoreAtCompilation(){return null;} } -- Summary: GCJ dumps core when semicolon placed to wrong place (x86, arm_le) Product: gcc Version: 4.1.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: java AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: cyberflex at mail dot ru http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32774