comment-only change



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3346 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_malloc2.c b/coregrind/vg_malloc2.c
index bf1cbd6..248fc5b 100644
--- a/coregrind/vg_malloc2.c
+++ b/coregrind/vg_malloc2.c
@@ -1338,8 +1338,8 @@
 
 void* VG_(cli_malloc) ( SizeT align, SizeT nbytes )                 
 {                                                                             
-   // 'align' should be valid by now.  arena_malloc_aligned() will
-   // abort if it's not.
+   // 'align' should be valid (ie. big enough and a power of two) by now.
+   // arena_malloc_aligned() will abort if it's not.
    if (VG_MIN_MALLOC_SZB == align)
       return VG_(arena_malloc)    ( VG_AR_CLIENT, nbytes ); 
    else