<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div>Hi Nicolas,<br><br></div><div><br>On Apr 22, 2016, at 11:52 PM, Nicolas Cellier &lt;<a href="mailto:nicolas.cellier.aka.nice@gmail.com">nicolas.cellier.aka.nice@gmail.com</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><span></span></div></blockquote><blockquote type="cite"><div><div dir="ltr">Ouch, I wonder how I could introduce these :(<br></div></div></blockquote><div><br></div>Never mind. &nbsp;You didn't do it on purpose. &nbsp;Some stupid tool probably did it for you. &nbsp;You can imagine how frustrating it is to discover midway through a build on 6 platforms using three Parallels VMs and a pi2, having to restart the builds on each commit ;-). Three times :-). &nbsp;Ugh...<div><br><blockquote type="cite"><div><div dir="ltr"><div><div class="gmail_extra"><br><div class="gmail_quote">2016-04-23 5:23 GMT+02:00  <span dir="ltr">&lt;<a href="mailto:commits@squeakvm.org" target="_blank">commits@squeakvm.org</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
Revision: 3682<br>
Author:&nbsp; &nbsp;eliot<br>
Date:&nbsp; &nbsp; &nbsp;2016-04-22 20:23:49 -0700 (Fri, 22 Apr 2016)<br>
Log Message:<br>
-----------<br>
Remove double backslashes at end of default implementation of new swap macros.<br>
<br>
Modified Paths:<br>
--------------<br>
&nbsp; &nbsp; branches/Cog/platforms/Cross/vm/sqMemoryAccess.h<br>
<br>
Property Changed:<br>
----------------<br>
&nbsp; &nbsp; branches/Cog/platforms/Cross/vm/sqSCCSVersion.h<br>
<br>
Modified: branches/Cog/platforms/Cross/vm/sqMemoryAccess.h<br>
===================================================================<br>
--- branches/Cog/platforms/Cross/vm/sqMemoryAccess.h&nbsp; &nbsp; 2016-04-23 00:59:25 UTC (rev 3681)<br>
+++ branches/Cog/platforms/Cross/vm/sqMemoryAccess.h&nbsp; &nbsp; 2016-04-23 03:23:49 UTC (rev 3682)<br>
@@ -218,18 +218,18 @@<br>
&nbsp;#&nbsp; define SQ_SWAP_8_BYTES(x) _byteswap_uint64(x)<br>
&nbsp;#else<br>
&nbsp;#&nbsp; define SQ_SWAP_4_BYTES(x) \<br>
-&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned int)(x) &lt;&lt; 24) | \\<br>
-&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned int)(x) &lt;&lt;&nbsp; 8) &amp; 0xff0000U) | \\<br>
-&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned int)(x) &gt;&gt;&nbsp; 8) &amp; 0xff00U) | \\<br>
+&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned int)(x) &lt;&lt; 24) | \<br>
+&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned int)(x) &lt;&lt;&nbsp; 8) &amp; 0xff0000U) | \<br>
+&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned int)(x) &gt;&gt;&nbsp; 8) &amp; 0xff00U) | \<br>
&nbsp; &nbsp; &nbsp; &nbsp; ( (unsigned int)(x) &gt;&gt; 24))<br>
&nbsp;#&nbsp; define SQ_SWAP_8_BYTES(x) \<br>
-&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &lt;&lt; 56) | \\<br>
-&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &lt;&lt; 40) &amp; 0xff000000000000ULL) | \\<br>
-&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &lt;&lt; 24) &amp; 0xff0000000000ULL) | \\<br>
-&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &lt;&lt; 8)&nbsp; &amp; 0xff00000000ULL) | \\<br>
-&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &gt;&gt; 8)&nbsp; &amp; 0xff000000ULL) | \\<br>
-&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &gt;&gt; 24) &amp; 0xff0000ULL) | \\<br>
-&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &gt;&gt; 40) &amp; 0xff00ULL) | \\<br>
+&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &lt;&lt; 56) | \<br>
+&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &lt;&lt; 40) &amp; 0xff000000000000ULL) | \<br>
+&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &lt;&lt; 24) &amp; 0xff0000000000ULL) | \<br>
+&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &lt;&lt; 8)&nbsp; &amp; 0xff00000000ULL) | \<br>
+&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &gt;&gt; 8)&nbsp; &amp; 0xff000000ULL) | \<br>
+&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &gt;&gt; 24) &amp; 0xff0000ULL) | \<br>
+&nbsp; &nbsp; &nbsp; &nbsp;(((unsigned long long)(x) &gt;&gt; 40) &amp; 0xff00ULL) | \<br>
&nbsp; &nbsp; &nbsp; &nbsp; ( (unsigned long long)(x) &gt;&gt; 56))<br>
&nbsp;#endif<br>
<br>
<br>
<br>
Property changes on: branches/Cog/platforms/Cross/vm/sqSCCSVersion.h<br>
___________________________________________________________________<br>
Modified: checkindate<br>
&nbsp; &nbsp;- Fri Apr 22 17:58:08 PDT 2016<br>
&nbsp; &nbsp;+ Fri Apr 22 20:22:44 PDT 2016<br>
<br>
</blockquote></div><br></div></div></div>
</div></blockquote></div></body></html>