* real invalid instruction. SSE is support on P3 so the test failed

on my laptop because the instruction was valid :)
This commit is contained in:
peter 2001-04-23 20:19:34 +00:00
parent 802acf6940
commit 28ad9617f7

View File

@ -1,9 +1,10 @@
{$mode objfpc}
uses sysutils;
{$asmmode intel}
begin
try
asm
// invalid opcode, e.g. SSE instruction
movaps %xmm6, %xmm7
db 0fh,0fh,0fh,0fh
end;
except
halt(0);