From 0a756479d28acb85ecf785f417ee6790331bec04 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Tue, 6 Aug 2002 20:30:43 +0200 Subject: [PATCH] * config/i386/mmintrin.h (__m64): Make the type 64-bit aligned. From-SVN: r56074 --- gcc/ChangeLog | 4 ++++ gcc/config/i386/mmintrin.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6abf6827a10d..2f3f632d6f17 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-08-06 Jakub Jelinek + + * config/i386/mmintrin.h (__m64): Make the type 64-bit aligned. + 2002-08-06 Jakub Jelinek * config.gcc (*-*-linux*): Default to --enable-threads=posix if no diff --git a/gcc/config/i386/mmintrin.h b/gcc/config/i386/mmintrin.h index 41dc4be6d6e7..88e384f80117 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__))); -- 2.47.2