Home | History | Annotate | Download | only in include
      1 /* APPLE LOCAL file 5612787 mainline sse4 */
      2 /* Copyright (C) 2007 Free Software Foundation, Inc.
      3 
      4    This file is part of GCC.
      5 
      6    GCC is free software; you can redistribute it and/or modify
      7    it under the terms of the GNU General Public License as published by
      8    the Free Software Foundation; either version 2, or (at your option)
      9    any later version.
     10 
     11    GCC is distributed in the hope that it will be useful,
     12    but WITHOUT ANY WARRANTY; without even the implied warranty of
     13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14    GNU General Public License for more details.
     15 
     16    You should have received a copy of the GNU General Public License
     17    along with GCC; see the file COPYING.  If not, write to
     18    the Free Software Foundation, 59 Temple Place - Suite 330,
     19    Boston, MA 02111-1307, USA.  */
     20 
     21 /* As a special exception, if you include this header file into source
     22    files compiled by GCC, this header file does not by itself cause
     23    the resulting executable to be covered by the GNU General Public
     24    License.  This exception does not however invalidate any other
     25    reasons why the executable file might be covered by the GNU General
     26    Public License.  */
     27 
     28 /* Implemented from the specification included in the Intel C++ Compiler
     29    User Guide and Reference, version 10.0.  */
     30 
     31 #ifndef _NMMINTRIN_H_INCLUDED
     32 #define _NMMINTRIN_H_INCLUDED
     33 
     34 #ifndef __SSE4_2__
     35 # error "SSE4.2 instruction set not enabled"
     36 #else
     37 /* We just include SSE4.1 header file.  */
     38 #include <smmintrin.h>
     39 #endif /* __SSE4_2__ */
     40 
     41 #endif /* _NMMINTRIN_H_INCLUDED */
     42