|
From: Jeremy F. <je...@go...> - 2004-03-13 02:38:39
|
CVS commit by fitzhardinge:
Close bug 71906. Set default malloc alignment to 8 rather than 4.
M +1 -1 vg_malloc2.c 1.20
--- valgrind/coregrind/vg_malloc2.c #1.19:1.20
@@ -48,5 +48,5 @@ Bool VG_(clo_trace_malloc) = False;
/* Minimum alignment in functions that don't specify alignment explicitly.
default: 0, i.e. use default of the machine (== 4) */
-Int VG_(clo_alignment) = 4;
+Int VG_(clo_alignment) = 8;
|