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]

Internal compiler error 373


[rene@pig] g++ -v --save-temps bomb.cpp
Reading specs from /usr/local/GNU/gcc-2.95.2/lib/gcc-lib/sparc-sun-solaris2.6/2.95.2/specs
gcc version 2.95.2 19991024 (release)
 /usr/local/GNU/gcc-2.95.2/lib/gcc-lib/sparc-sun-solaris2.6/2.95.2/cpp -lang-c++ -v -D__GNUC__=2 -D__GNUG__=2 -D__GNUC_MINOR__=95 -D__cplusplus -Dsparc -Dsun -Dunix -D__svr4__ -D__SVR4 -D__sparc__ -D__sun__ -D__unix__ -D__svr4__ -D__SVR4 -D__sparc -D__sun -D__unix -Asystem(unix) -Asystem(svr4) -D__EXCEPTIONS -D__GCC_NEW_VARARGS__ -Acpu(sparc) -Amachine(sparc) bomb.cpp bomb.ii
GNU CPP version 2.95.2 19991024 (release) (sparc)
#include "..." search starts here:
#include <...> search starts here:
 /usr/local/GNU/gcc-2.95.2/lib/gcc-lib/sparc-sun-solaris2.6/2.95.2/../../../../include/g++-3
 /usr/local/include
 /usr/local/GNU/gcc-2.95.2/lib/gcc-lib/sparc-sun-solaris2.6/2.95.2/../../../../sparc-sun-solaris2.6/include
 /usr/local/GNU/gcc-2.95.2/lib/gcc-lib/sparc-sun-solaris2.6/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/GNU/gcc-2.95.2/lib/gcc-lib/sparc-sun-solaris2.6/2.95.2/cc1plus bomb.ii -quiet -dumpbase bomb.cc -version -o bomb.s
GNU C++ version 2.95.2 19991024 (release) (sparc-sun-solaris2.6) compiled by GNU C version 2.95.2 19991024 (release).
bomb.cpp: In function `void explode()':
bomb.cpp:12: Internal compiler error 373.
bomb.cpp:12: Please submit a full bug report.
bomb.cpp:12: See <URL:http://www.gnu.org/software/gcc/faq.html#bugreport> for instructions.

[rene@pig] cat bomb.ii
# 1 "bomb.cpp"
template<class T>
void detonate(T TNT) {
  TNT();
}

namespace bomb {
  template <class T> 
  void kaboom(T) { return; }
}

void explode() {
  detonate(bomb::kaboom<short>);
}


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