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++, 2.95: ICE on debug output with arrays



// I think this has recently been discussed, but not being sure whether its the same
// problem, I'll report it anyway.
// Configuration:
//    gcc version 2.95
//    sparc-sun-solaris2.6
//
// gcc output
//     tmp/x>/usr/local/gcc/gcc-2.95/bin/c++ -o /dev/null -gdwarf -c test02.cc 
//         test02.cc:23: Internal compiler error in `fundamental_type_code', at dwarfout.c:1416
//                       Please submit a full bug report.
//                       See  <URL:http://egcs.cygnus.com/faq.html#bugreport> for instructions.
//
// Note that the error goes away if -gdwarf is replaced by -g.
//
// Best regards
//   Wolfgang
//


template <int dim>
struct Patch {
    static const unsigned int count = 3;
    double vertices[count];
};

Patch<1> p;


-------------------------------------------------------------------------
Wolfgang Bangerth          email: wolfgang.bangerth@iwr.uni-heidelberg.de
                             www: http://gaia.iwr.uni-heidelberg.de/~wolf





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