diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-10 15:11:53 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-10 15:11:53 +0200 |
commit | cd61f5ee28d958d3aa57434e31a936fe74df7507 (patch) | |
tree | 96486a76a26ce7b64c1a7dd0d449fc39faf5cff1 | |
parent | 2de490e2847edaaa11e1ac1baefc5bcd6ebac2fb (diff) | |
download | xine-lib-cd61f5ee28d958d3aa57434e31a936fe74df7507.tar.gz xine-lib-cd61f5ee28d958d3aa57434e31a936fe74df7507.tar.bz2 |
Use ATTR_ALIGN to declare alignment.
-rw-r--r--[-rwxr-xr-x] | src/post/goom/mmx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/goom/mmx.h b/src/post/goom/mmx.h index b650d8b12..b2acd607b 100755..100644 --- a/src/post/goom/mmx.h +++ b/src/post/goom/mmx.h @@ -58,7 +58,7 @@ typedef union { char b[8]; /* 8 Byte (8-bit) values */ unsigned char ub[8]; /* 8 Unsigned Byte */ float s[2]; /* Single-precision (32-bit) value */ -} __attribute__ ((aligned (8))) mmx_t; /* On an 8-byte (64-bit) boundary */ +} ATTR_ALIGN(8) mmx_t; /* On an 8-byte (64-bit) boundary */ |