This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: [PATCH] PR11706, optimize std::pow(T, int)
- From: Gabriel Dos Reis <gdr at integrable-solutions dot net>
- To: Richard Guenther <rguenth at tat dot physik dot uni-tuebingen dot de>
- Cc: Paolo Carlini <pcarlini at suse dot de>, libstdc++ at gcc dot gnu dot org
- Date: 12 Jan 2005 16:58:59 +0100
- Subject: Re: [PATCH] PR11706, optimize std::pow(T, int)
- Organization: Integrable Solutions
- References: <Pine.LNX.4.44.0501121639470.16464-100000@alwazn.tat.physik.uni-tuebingen.de>
Richard Guenther <rguenth@tat.physik.uni-tuebingen.de> writes:
| else if (__builtin_types_compatible_p(_Tp, double))
Dispatching on types is done is C++ with template specializations.
-- Gaby