*** empty log message ***

This commit is contained in:
florian 2001-04-06 22:53:26 +00:00
parent a022ac9bb2
commit 99fbea55b7

12
tests/webtbs/tw1122.pp Normal file
View File

@ -0,0 +1,12 @@
{$mode objfpc}
begin
try
asm
// invalid opcode, e.g. SSE instruction
movaps %xmm6, %xmm7
end;
except
halt(0);
end;
halt(1);
end.