diff options
author | Jakub Jelinek <jakub@redhat.com> | 2002-08-06 20:33:21 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2002-08-06 20:33:21 +0200 |
commit | daeabcd06bc02b7b91f041c14f932d80b82f45f5 (patch) | |
tree | f943a4ef894b81f839a313099d14f01fb1801db7 /gcc/config/i386/mmintrin.h | |
parent | 9812691ec96eb2bde4bb0c6c5e572012037074f5 (diff) | |
download | gcc-daeabcd06bc02b7b91f041c14f932d80b82f45f5.zip gcc-daeabcd06bc02b7b91f041c14f932d80b82f45f5.tar.gz gcc-daeabcd06bc02b7b91f041c14f932d80b82f45f5.tar.bz2 |
* config/i386/mmintrin.h (__m64): Make the type 64-bit aligned.
From-SVN: r56075
Diffstat (limited to 'gcc/config/i386/mmintrin.h')
-rw-r--r-- | gcc/config/i386/mmintrin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/mmintrin.h b/gcc/config/i386/mmintrin.h index 41dc4be..88e384f 100644 --- a/gcc/config/i386/mmintrin.h +++ b/gcc/config/i386/mmintrin.h @@ -31,7 +31,7 @@ #define _MMINTRIN_H_INCLUDED /* The data type intended for user use. */ -typedef unsigned long long __m64; +typedef unsigned long long __m64 __attribute__ ((__aligned__ (8))); /* Internal data types for implementing the intrinsics. */ typedef int __v2si __attribute__ ((__mode__ (__V2SI__))); |