Commit 1da1a268 by Uros Bizjak Committed by Uros Bizjak

Add missing commit part:

        * gcc.dg/compat/struct-layout-1.h: Do not include <mmintrin.h> and
        <xmmintrin.h>, define __m64 and __m128 directly.

From-SVN: r141852
parent 4cc115a2
...@@ -27,6 +27,9 @@ ...@@ -27,6 +27,9 @@
* g++.dg/compat/struct-layout-1_generate.c (dg-options): Add * g++.dg/compat/struct-layout-1_generate.c (dg-options): Add
-fno-common for *-*-darwin* *-*-mingw32* *-*-cygwin* targets. -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> 2008-11-13 Olivier Hainque <hainque@adacore.com>
* gnat.dg/test_raise_from_pure.adb: Adjust to match revised intent. * gnat.dg/test_raise_from_pure.adb: Adjust to match revised intent.
......
...@@ -44,12 +44,12 @@ typedef int u2df; ...@@ -44,12 +44,12 @@ typedef int u2df;
#endif #endif
#if (defined __i386__ || defined __x86_64__) && !defined SKIP_ATTRIBUTE #if (defined __i386__ || defined __x86_64__) && !defined SKIP_ATTRIBUTE
# ifdef __MMX__ # ifdef __MMX__
# include <mmintrin.h> typedef int __m64 __attribute__ ((__vector_size__ (8)));
# else # else
typedef int __m64; typedef int __m64;
# endif # endif
# ifdef __SSE__ # ifdef __SSE__
# include <xmmintrin.h> typedef float __m128 __attribute__ ((__vector_size__ (16)));
# else # else
typedef int __m128; typedef int __m128;
# endif # endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment