Add missing commit part:
authorUros Bizjak <ubizjak@gmail.com>
Fri, 14 Nov 2008 09:47:23 +0000 (10:47 +0100)
committerUros Bizjak <uros@gcc.gnu.org>
Fri, 14 Nov 2008 09:47:23 +0000 (10:47 +0100)
        * gcc.dg/compat/struct-layout-1.h: Do not include <mmintrin.h> and
        <xmmintrin.h>, define __m64 and __m128 directly.

From-SVN: r141852

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/compat/struct-layout-1.h

index bea2964..c1d3548 100644 (file)
@@ -27,6 +27,9 @@
        * g++.dg/compat/struct-layout-1_generate.c (dg-options): Add
        -fno-common for *-*-darwin* *-*-mingw32* *-*-cygwin* targets.
 
+       * gcc.dg/compat/struct-layout-1.h: Do not include <mmintrin.h> and
+       <xmmintrin.h>, define __m64 and __m128 directly.
+
 2008-11-13  Olivier Hainque  <hainque@adacore.com>
 
        * gnat.dg/test_raise_from_pure.adb: Adjust to match revised intent.
index 8426787..82ac9f8 100644 (file)
@@ -44,12 +44,12 @@ typedef int u2df;
 #endif
 #if (defined __i386__ || defined __x86_64__) && !defined SKIP_ATTRIBUTE
 # ifdef __MMX__
-#  include <mmintrin.h>
+typedef int __m64 __attribute__ ((__vector_size__ (8)));
 # else
 typedef int __m64;
 # endif
 # ifdef __SSE__
-#  include <xmmintrin.h>
+typedef float __m128 __attribute__ ((__vector_size__ (16)));
 # else
 typedef int __m128;
 # endif