<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">This  test  starting to fail on a Window  machine:<div><br></div><div><pre style="font-family: 'Courier New', courier, monotype, monospace; font-size: medium;"><span class="stdout">C: .../Release/../lib/clang/3.4/include\tgmath.h:33:10: fatal error: 'complex.h' file not found
  #include <complex.h>
           ^
  1 error generated.</span></pre><div>- Fariborz</div><div><br></div><div><br></div><div><div>On May 9, 2013, at 10:41 AM, Richard Smith <<a href="mailto:richard-llvm@metafoo.co.uk">richard-llvm@metafoo.co.uk</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div style="letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">Author: rsmith<br>Date: Thu May  9 12:41:19 2013<br>New Revision: 181527<br><br>URL:<span class="Apple-converted-space"> </span><a href="http://llvm.org/viewvc/llvm-project?rev=181527&view=rev">http://llvm.org/viewvc/llvm-project?rev=181527&view=rev</a><br>Log:<br>Fix the return type of the complex creal functions. Patch by YunZhong Gao, modified to use _Static_assert and to check __STDC_HOSTED__ by me.<br><br>Modified:<br>   cfe/trunk/lib/Headers/tgmath.h<br><br>Modified: cfe/trunk/lib/Headers/tgmath.h<br>URL:<span class="Apple-converted-space"> </span><a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Headers/tgmath.h?rev=181527&r1=181526&r2=181527&view=diff">http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Headers/tgmath.h?rev=181527&r1=181526&r2=181527&view=diff</a><br>==============================================================================<br>--- cfe/trunk/lib/Headers/tgmath.h (original)<br>+++ cfe/trunk/lib/Headers/tgmath.h Thu May  9 12:41:19 2013<br>@@ -1340,15 +1340,15 @@ static long double _Complex<br><br>// creal<br><br>-static float _Complex<br>+static float<br>    _TG_ATTRS<br>    __tg_creal(float __x) {return __x;}<br><br>-static double _Complex<br>+static double<br>    _TG_ATTRS<br>    __tg_creal(double __x) {return __x;}<br><br>-static long double _Complex<br>+static long double<br>    _TG_ATTRS<br>    __tg_creal(long double __x) {return __x;}<br><br><br><br>_______________________________________________<br>cfe-commits mailing list<br><a href="mailto:cfe-commits@cs.uiuc.edu">cfe-commits@cs.uiuc.edu</a><br><a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits</a></div></blockquote></div><br></div></body></html>