This is the mail archive of the gcc-patches@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]

eb127


With the first bug fixed, the second one turns into an ICE.

Martin

Index: eb127.C
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/testsuite/g++.old-deja/g++.robertl/eb127.C,v
retrieving revision 1.1
diff -c -p -r1.1 eb127.C
*** eb127.C	1998/05/27 23:00:35	1.1
--- eb127.C	1998/06/02 08:02:32
*************** void ODEsolver::midpointODE(vector<doubl
*** 39,45 ****
  
  void ODEsolver::init()
  {
!   ODEsolver::useMethod = ODEsolver::midpointODE;
  }
  
  void ODEsolver::timeloop(vector<double>& y, double ts, double te, double dt)
--- 39,45 ----
  
  void ODEsolver::init()
  {
!   ODEsolver::useMethod = &ODEsolver::midpointODE;
  }
  
  void ODEsolver::timeloop(vector<double>& y, double ts, double te, double dt)


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