* fix test for i386

This commit is contained in:
florian 2024-03-10 23:02:38 +01:00
parent a35577593b
commit 57a1b5a39b

View File

@ -196,6 +196,9 @@ begin
end
else
writeln('no');
{$ifndef cpui386}
{ makes no sense on i386, the instruction is not available in 32 bit mode }
write('CMPXCHG16B support: ');
if CMPXCHG16BSupport then
begin
@ -210,5 +213,6 @@ begin
end
else
writeln('no');
{$endif cpui386}
end.