Bug 16110
Summary: | gcj segfaults when class not found | ||
---|---|---|---|
Product: | [Retired] Red Hat Linux | Reporter: | mal |
Component: | gcc | Assignee: | Jakub Jelinek <jakub> |
Status: | CLOSED RAWHIDE | QA Contact: | |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 7.0 | ||
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | i386 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2000-08-21 13:26:21 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
mal
2000-08-13 20:29:05 UTC
This is a test case: -------------------------------------- cat Y.java import a.b.c.d.F; class Y { final a.b.c.d.F x=new a.b.c.d.F(); } Cannot reproduce it. Fixed in gcc-java-2.96-53 ============= 2.96-53 rpm -q gcc-java gcc-java-2.96-53 [mal@eth0_extrenal tgcc]$ gcj -c Y.java Y.java:1: Class or interface `a.b.c.d.F' not found in import. import a.b.c.d.F; ^ Y.java:3: Type `a.b.c.d.F' not found in declaration of field `x'. final a.b.c.d.F x=new a.b.c.d.F(); ^ 2 errors ================== 2.96-46 rpm -q gcc-java gcc-java-2.96-46 [john@clienthost /tmp]$ gcj -c Y.java Y.java:1: Class or interface `a.b.c.d.F' not found in import. import a.b.c.d.F; ^ Y.java:3: Type `a.b.c.d.F' not found in declaration of field `x'. final a.b.c.d.F x=new a.b.c.d.F(); ^ gcj: Internal error: Segmentation fault (program jc1) Please submit a full bug report. See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions. I'll close it then... |