I checked out a snapshot of code from the latest commit on Wed, 23 Mar 2011 00:32:49 +0000. I am running this on a C55x processor. (fixed point enabled)<br><br>Line 98 of ecintrin.h read:<br><br># define EC_CLZ(_x) (_lnorm(x))<br>
<br>This lead to about 30 compile errors complaining about &quot;identifier &quot;x&quot; is undefined&quot;<br><br>I changed it to:<br><br># define EC_CLZ(_x) (_lnorm(_x))<br><br>and the compiler is much happier.<br><br>
<br>