From: Julian Seward Date: Wed, 29 Jun 2005 17:12:28 +0000 (+0000) Subject: It's official. I am a moron. X-Git-Tag: svn/VALGRIND_3_0_0~265 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd954f7da028268591288913cbad3b70bb7ce596;p=thirdparty%2Fvalgrind.git It's official. I am a moron. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4053 --- diff --git a/coregrind/m_transtab.c b/coregrind/m_transtab.c index ec0644a9d5..50617868ad 100644 --- a/coregrind/m_transtab.c +++ b/coregrind/m_transtab.c @@ -334,7 +334,7 @@ static void invalidate_icache ( void *ptr, Int nbytes ) Addr addr; /* Surely no real cache would have a different line size? */ - vg_assert(cls == 16 || cls == 32 || cls == 64); + vg_assert(cls == 16 || cls == 32 || cls == 64 || cls == 128); startaddr &= ~(cls - 1); for (addr = startaddr; addr < endaddr; addr += cls)