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]

function pointer template parameter bug


The following program crashes egcs-2.90.23 980102.  

kalgoorlie:1066$ /exp/rcf/share/bin/g++ -v
Reading specs from /exp/rcf/share/lib/gcc-lib/i686-pc-linux-gnulibc1/egcs-2.90.23/specs
gcc version egcs-2.90.23 980102 (egcs-1.0.1 release)
kalgoorlie:1067$ /exp/rcf/share/bin/g++ tmp.cc
tmp.cc: In function `int main()':
tmp.cc:14: Internal compiler error.
tmp.cc:14: Please submit a full bug report to `egcs-bugs@cygnus.com'.


---------- tmp.cc ----------
double f(double a)
{
  return a;
}

template <double (*F)(double)>
double callF(double a)
{
  return F(a);
}

int main()
{
  callF<f>(2.0);  // line 14
  return 0;
}
---------------------------


Adam


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