This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: testsuite fixes for small doubles
- From: "Kaveh R. GHAZI" <ghazi at caip dot rutgers dot edu>
- To: DJ Delorie <dj at redhat dot com>
- Cc: gcc at gcc dot gnu dot org
- Date: Thu, 23 Apr 2009 21:53:40 -0400 (EDT)
- Subject: Re: testsuite fixes for small doubles
- References: <200904240034.n3O0Y1Ce005872@greed.delorie.com>
On Thu, 23 Apr 2009, DJ Delorie wrote:
> +# Return 1 if the target supports double larger than float,
> +# 0 otherwise.
> +
> +proc check_effective_target_large_double { } {
> + return [check_no_compiler_messages large_double object {
> + int dummy[sizeof(double) < sizeof(float) ? 1 : -1];
> + }]
Isn't that comparison reversed?