comment wibbles


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1175 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/memcheck/mc_main.c b/memcheck/mc_main.c
index c6ddc14..2e8f712 100644
--- a/memcheck/mc_main.c
+++ b/memcheck/mc_main.c
@@ -873,8 +873,7 @@
 static
 void memcheck_new_mem_startup( Addr a, UInt len, Bool rr, Bool ww, Bool xx )
 {
-   // JJJ: this ignores the permissions and just makes it readable, like the
-   // old code did, AFAICT
+   /* Ignore the permissions, just make it readable.  Seems to work... */
    DEBUG("new_mem_startup(%p, %u, rr=%u, ww=%u, xx=%u)\n", a,len,rr,ww,xx);
    SK_(make_readable)(a, len);
 }