On 25/05/16 04:13, Emilio G. Cota wrote: > Reviewed-by: Richard Henderson <[email protected]> > Reviewed-by: Alex Bennée <[email protected]> > Signed-off-by: Emilio G. Cota <[email protected]>
Reviewed-by: Sergey Fedorov <[email protected]> > --- > include/qemu/compiler.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/include/qemu/compiler.h b/include/qemu/compiler.h > index 8f1cc7b..b64f899 100644 > --- a/include/qemu/compiler.h > +++ b/include/qemu/compiler.h > @@ -41,6 +41,8 @@ > # define QEMU_PACKED __attribute__((packed)) > #endif > > +#define QEMU_ALIGNED(X) __attribute__((aligned(X))) > + > #ifndef glue > #define xglue(x, y) x ## y > #define glue(x, y) xglue(x, y)
