This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Bug report: internal compiler error on (incorrect) array initialization
- To: bug-gcc at gnu dot org
- Subject: Bug report: internal compiler error on (incorrect) array initialization
- From: John Schavemaker <Schavemaker at fel dot tno dot nl>
- Date: Wed, 31 May 2000 13:29:22 +0200
- Organization: TNO-FEL
- References: <3934F2F9.B7C5B6EC@fel.tno.nl>
In addition:
$ gcc -v --save-temps yoho.cc
Reading specs from /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/specs
gcc version 2.95.2 19991024 (release)
/usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/cpp -lang-c++ -v
-D__GNUC__=2 -D__GNUG__=2 -D__GNUC_MINOR__=95 -D__cplusplus -D__ELF__
-Dunix -D__i386__ -Dlinux -D__ELF__ -D__unix__ -D__i386__ -D__linux__
-D__unix -D__linux -Asystem(posix) -D__EXCEPTIONS -Acpu(i386)
-Amachine(i386) -Di386 -D__i386 -D__i386__ -Di686 -Dpentiumpro -D__i686
-D__i686__ -D__pentiumpro -D__pentiumpro__ yoho.cc yoho.ii
GNU CPP version 2.95.2 19991024 (release) (i386 Linux/ELF)
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/qt/include
/usr/lib/qt/include
/usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/../../../../include/g++-3
/usr/local/include
/usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/../../../../i686-pc-linux-gnu/include
/usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include
/usr/include
End of search list.
The following default directories have been omitted from the search
path:
End of omitted list.
/usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/cc1plus yoho.ii -quiet
-dumpbase yoho.cc -version -o yoho.s
GNU C++ version 2.95.2 19991024 (release) (i686-pc-linux-gnu) compiled
by GNU C version 2.95.2 19991024 (release).
yoho.cc: In function `int main()':
yoho.cc:4: Internal compiler error.
yoho.cc:4: Please submit a full bug report.
yoho.cc:4: See <URL:http://www.gnu.org/software/gcc/faq.html#bugreport>
for instructions.
--
dr. J.G.M. Schavemaker
Electro-Optical Systems, TNO Physics and Electronics Laboratory
P.O. Box 96864 NL-2509 JG The Hague, The Netherlands
Phone: +31 70 374 0860 Fax: +31 70 374 0654 Email:
Schavemaker@fel.tno.nl
# 1 "yoho.cc"
main()
{
int *a = new int[ 4 ] = { {1, 2}, {3, 4} };
}