>Submitter-Id:  net
>Originator:    Len Berman
>Organization:  IBM Research
>Confidential:  no
>Synopsis: Internal compiler error in fix_lexical_addr, at function.c:5530
>Severity: serious
>Priority:      medium
>Category: java
>Class:   ice-on-legal-code
>Release:       3.0.3 (Debian testing/unstable)
>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.
        


Reply via email to