mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-04 15:10:16 +02:00
- disable x86-specific workarounds when using LLVM (even when targeting x86)
git-svn-id: trunk@32782 -
This commit is contained in:
parent
8471d93bf8
commit
4643913d58
@ -838,7 +838,7 @@ implementation
|
||||
LOC_MMREGISTER,
|
||||
LOC_CMMREGISTER:
|
||||
begin
|
||||
{$ifdef x86}
|
||||
{$if defined(x86) and not defined(llvm)}
|
||||
if (right.resultdef.typ=floatdef) and
|
||||
not use_vectorfpu(right.resultdef) then
|
||||
begin
|
||||
@ -941,7 +941,7 @@ implementation
|
||||
{ we can't do direct moves between fpu and mm registers }
|
||||
if left.location.loc in [LOC_MMREGISTER,LOC_CMMREGISTER] then
|
||||
begin
|
||||
{$ifdef x86}
|
||||
{$if defined(x86) and not defined(llvm)}
|
||||
if not use_vectorfpu(right.resultdef) then
|
||||
begin
|
||||
{ perform size conversion if needed (the mm-code cannot convert an }
|
||||
|
Loading…
Reference in New Issue
Block a user