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]

C++ Templete function internal error bug report


I'm stranger writing English.

About Program
 This program is test container for graph.
 And this program aims fundamental graph tool.
 Now I tested breadth-first search( bds ) for graph-layout.
 e.g. bds list ==> Tree list
      calculate depth data ==> (r,theta) ==> draw(x,y, Object)

history
1) make no weight graph class
2) I hit on programming weighted graph for regMatch.
3) change Graph.h
   
   no weight : map<Vertex*, vector<Vertex*> >
   ->
   weighed   : map<Vertex*, map<Vertex*, Type> >

4) weighted Version is Template Class.
And I reimplemanted. and Error is occored.

cd ~/C++/graph/
make -k 
g++ -g `gtk-config --cflags` -c graph01.cc
graph01.cc:11: Internal compiler error 90.
graph01.cc:11: Please submit a full bug report to `egcs-bugs@cygnus.com'.
make: *** [graph01.o] Error 1
make: Target `graph01' not remade because of errors.

Compilation exited abnormally with code 2 at Thu Oct 28 19:26:27

Graph.tgz


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