Patrick Ohly's --alignment= patch, to increase alignment of malloc'd
blocks if needed.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@422 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_include.h b/coregrind/vg_include.h
index fb675b9..6c28cd4 100644
--- a/coregrind/vg_include.h
+++ b/coregrind/vg_include.h
@@ -239,6 +239,9 @@
 /* Round malloc sizes upwards to integral number of words? default:
    NO */
 extern Bool  VG_(clo_sloppy_malloc);
+/* Minimum alignment in functions that don't specify alignment explicitly.
+   default: 0, i.e. use default of the machine (== 4) */
+extern Int   VG_(clo_alignment);
 /* Allow loads from partially-valid addresses?  default: YES */
 extern Bool  VG_(clo_partial_loads_ok);
 /* Simulate child processes? default: NO */