* config/i386/mmintrin.h (__m64): Make the type 64-bit aligned.

From-SVN: r56074
This commit is contained in:
Jakub Jelinek 2002-08-06 20:30:43 +02:00 committed by Jakub Jelinek
parent b2ba8d6ade
commit 0a756479d2
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-08-06 Jakub Jelinek <jakub@redhat.com>
* config/i386/mmintrin.h (__m64): Make the type 64-bit aligned.
2002-08-06 Jakub Jelinek <jakub@redhat.com>
* config.gcc (*-*-linux*): Default to --enable-threads=posix if no

View File

@ -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__)));