Modified: MacRuby/trunk/numeric.c (3756 => 3757)
--- MacRuby/trunk/numeric.c 2010-03-13 04:20:25 UTC (rev 3756)
+++ MacRuby/trunk/numeric.c 2010-03-13 04:31:10 UTC (rev 3757)
@@ -3212,14 +3212,15 @@
* fix.popcnt => Fixnum
*
* Returns the number of 1 bits set in the internal representation of
- * <i>fix</i>. This function returns consistent results across platforms for
- * positive numbers, but may vary for negative numbers.
+ * <i>fix</i>. This function returns consistent results across platforms for
+ * positive numbers, but may vary for negative numbers.
*
*/
+
static VALUE
fix_popcnt(VALUE num, SEL sel)
{
- return INT2FIX(__builtin_popcountl(FIX2ULONG(num)));
+ return INT2FIX(__builtin_popcountl(FIX2ULONG(num)));
}
/*