When gcc 4.2.0 was imported, the 3DNow intrinsics header <mm3dnow.h> was

not added to the list of intrinsics headers to install, so belatedly (5
years :) add it.

MFC after:	1 week
This commit is contained in:
Dimitry Andric 2013-05-08 22:54:53 +00:00
parent ca21efa1b5
commit ffd564d5d9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=250393

View File

@ -9,7 +9,8 @@ INCSDIR=${INCLUDEDIR}/gcc/${GCCVER}
.PATH: ${GCCDIR}/config/${GCC_CPU}
.if ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "amd64"
INCS= emmintrin.h mmintrin.h pmmintrin.h tmmintrin.h xmmintrin.h mm_malloc.h
INCS= emmintrin.h mmintrin.h mm3dnow.h pmmintrin.h tmmintrin.h xmmintrin.h \
mm_malloc.h
.elif ${TARGET_ARCH} == "ia64"
INCS= ia64intrin.h
.elif ${TARGET_ARCH} == "arm"