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?