Thanks, I pushed this one.
On Sun, Apr 10, 2011 at 11:17:39PM -0700, Justin Pettit wrote:
> Looks good to me.
>
> --Justin
>
>
> On Apr 8, 2011, at 4:45 PM, Ben Pfaff wrote:
>
> > Obviously correct code is easier on everyone. As the C FAQ says:
___
Looks good to me.
--Justin
On Apr 8, 2011, at 4:45 PM, Ben Pfaff wrote:
> Obviously correct code is easier on everyone. As the C FAQ says:
>
> 20.15c: How can I swap two values without using a temporary?
>
> A:The standard hoary old assembly language programmer's trick is:
>
>
Obviously correct code is easier on everyone. As the C FAQ says:
20.15c: How can I swap two values without using a temporary?
A: The standard hoary old assembly language programmer's trick is:
a ^= b;
b ^= a;
a ^= b;
But this sort of