[MLton-commit] r7171

Matthew Fluet fluet at mlton.org
Thu Jun 18 08:05:42 PDT 2009


Use type appropriate predicate.
----------------------------------------------------------------------

U   mlton/trunk/runtime/util/align.h

----------------------------------------------------------------------

Modified: mlton/trunk/runtime/util/align.h
===================================================================
--- mlton/trunk/runtime/util/align.h	2009-06-18 04:00:57 UTC (rev 7170)
+++ mlton/trunk/runtime/util/align.h	2009-06-18 15:05:42 UTC (rev 7171)
@@ -32,7 +32,7 @@
   assert (b >= 1 && b == (b & -b));
   a += b - 1;
   a &= -b;
-  assert (isAlignedMax (a, b));
+  assert (isAligned (a, b));
   return a;       
 }
 




More information about the MLton-commit mailing list