This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

java/5393: Internal compiler error in fix_lexical_addr, at function.c:5530



>Number:         5393
>Category:       java
>Synopsis:       Internal compiler error in fix_lexical_addr, at function.c:5530
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          ice-on-legal-code
>Submitter-Id:   net
>Arrival-Date:   Tue Jan 15 12:46:02 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Len Berman
>Release:        3.0.3 (Debian testing/unstable)
>Organization:
IBM Research
>Environment:
System: Linux lyon 2.4.16-686 #1 Wed Nov 28 09:27:17 EST 2001 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,proto,objc --prefix=/usr --infodir=/share/info --mandir=/share/man --enable-shared --with-gnu-as --with-gnu-ld --with-system-zlib --enable-long-long --enable-nls --without-included-gettext --disable-checking --enable-threads=posix --enable-java-gc=boehm --with-cpp-install-dir=bin --enable-objc-gc i386-linux
>Description:
gives internal error processing initialization block.  Problem caused by internal block:
		{
				instances = new Vector();
				types2Check = new Hashtable();
				typeList = new Vector();
		}
fixed by 
		private Hashtable             types2Check = new Hashtable();
		private Vector                typeList = new Vector();
		protected Vector                instances = new Vector();
	
>How-To-Repeat:
	
>Fix:
do initializations in methods called rather than in separate blocks.
	
>Release-Note:
>Audit-Trail:
>Unformatted:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]