From: Julian Seward Date: Tue, 12 Oct 2010 10:13:17 +0000 (+0000) Subject: Define VG_CLREQ_SZB correctly on ARM, so Cachegrind and Callgrind X-Git-Tag: svn/VALGRIND_3_6_0~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfb2ce8d2e9637d220c71ed0edb7d406bc92fa36;p=thirdparty%2Fvalgrind.git Define VG_CLREQ_SZB correctly on ARM, so Cachegrind and Callgrind don't assert in their regtests on ARM. (Value is the same in both ARM and Thumb mode, fortunately.) git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11432 --- diff --git a/include/pub_tool_machine.h b/include/pub_tool_machine.h index 5b34c4886d..35b3c491a2 100644 --- a/include/pub_tool_machine.h +++ b/include/pub_tool_machine.h @@ -61,7 +61,7 @@ #elif defined(VGP_arm_linux) # define VG_MIN_INSTR_SZB 2 # define VG_MAX_INSTR_SZB 4 -# define VG_CLREQ_SZB 28 +# define VG_CLREQ_SZB 20 # define VG_STACK_REDZONE_SZB 0 #elif defined(VGP_ppc32_aix5)