<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On 20 June 2015 at 12:06, Walter Bright via Digitalmars-d <span dir="ltr"><<a href="mailto:digitalmars-d@puremagic.com" target="_blank">digitalmars-d@puremagic.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 6/20/2015 2:48 AM, Iain Buclaw via Digitalmars-d wrote:<br>
</span><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
<br>
On 20 Jun 2015 11:35, "Martin Nowak via Digitalmars-d"<br></span><div><div class="h5">
<<a href="mailto:digitalmars-d@puremagic.com" target="_blank">digitalmars-d@puremagic.com</a> <mailto:<a href="mailto:digitalmars-d@puremagic.com" target="_blank">digitalmars-d@puremagic.com</a>>> wrote:<br>
 ><br>
 > On 06/20/2015 09:52 AM, Walter Bright wrote:<br>
 > ><br>
 > > Which C runtime are you using? The math functions in C runtimes are<br>
 > > often inadequate.<br>
 ><br>
 > So we now call the host's C library to perform constant folding/CTFE of exp?<br>
 > This is a point for Iain's proposal to use a high precision floating<br>
 > point implementation in the compiler to avoid machine/platform differences.<br>
<br></div></div><span class="">
I thought dmd used the C library implementations for all intrinsics via CTFE,<br>
not just exp?<br>
<br>
In any case, isn't the problem you are seeing related to the conversion of<br>
string to float? Which again dmd is at the mercy of the C library implementation<br>
to handle correctly.<br>
<br>
</span></blockquote>
<br>
The code is the following, in lexer.c:<br>
<br>
  errno = 0;<br>
  (void)Port::strtod((char *)stringbuffer.data, NULL);<br>
  if (errno == ERANGE)<br></blockquote><div><br></div><div>Ah yes, that brings back memories of fixing GDC to set errno = ERANGE if casting the result from 160bits down returns Infinity.<br><br></div><div>Can we make this a boolean check removing the need for me to explicitly set errno?<br></div><div><br></div></div></div></div>