This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Bug report
- To: gcc-bugs at gcc dot gnu dot org
- Subject: Bug report
- From: Marc Duflot <M dot Duflot at ulg dot ac dot be>
- Date: Tue, 27 Jun 2000 15:04:03 +0200
$ g++ -v
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/specs
gcc version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)
$ g++ -I /usr/local/blitz -I /usr/local/mtl -c bug.C
bug.C:13: Internal compiler error.
bug.C:13: Please submit a full bug report.
bug.C:13: See <URL:http://www.gnu.org/software/gcc/faq.html#bugreport>
for instructions.
$ g++ -I /usr/local/blitz -I /usr/local/mtl -E bug.C > bug.i
$ gzip bug.i
Hope this helps !
--
Marc Duflot -- FNRS Research Fellow
#include <blitz/tinymat.h>
#include <mtl/matrix.h>
using namespace mtl;
template <int nsd>
class Meshless {
public :
typedef blitz::TinyMatrix<double,nsd,nsd> ElmMat;
typedef matrix< ElmMat,
symmetric<lower>,
compressed<>,
row_major> :: type T_MatK;
typedef T_MatK::iterator T_MatKItRow;
};
bug.i.gz