* ensure that the new mm related procs are only used for 3.3.1 and newer as 3.2 and older don't support the corresponding SSE types

git-svn-id: trunk@43967 -
This commit is contained in:
svenbarth 2020-01-18 11:22:24 +00:00
parent b3c579f49c
commit 8184815780
2 changed files with 5 additions and 1 deletions

View File

@ -42,4 +42,6 @@ function fpc_x86_get_fs:longint;[internproc:fpc_in_x86_get_fs];
function fpc_x86_get_gs:longint;[internproc:fpc_in_x86_get_gs];
{ include automatically generated procs }
{$i cpummprocs.inc}
{$if not defined(VER3_0) and not defined(VER3_2)}
{$i cpummprocs.inc}
{$endif not VER3_0 and not VER3_2}

View File

@ -33,4 +33,6 @@ function fpc_x86_get_fs:longint;[internproc:fpc_in_x86_get_fs];
function fpc_x86_get_gs:longint;[internproc:fpc_in_x86_get_gs];
{ include automatically generated procs }
{$if not defined(VER3_0) and not defined(VER3_2)}
{$i cpummprocs.inc}
{$endif not VER3_0 and not VER3_2}