Explorar el Código

*** empty log message ***

florian hace 24 años
padre
commit
99fbea55b7
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. 12 0
      tests/webtbs/tw1122.pp

+ 12 - 0
tests/webtbs/tw1122.pp

@@ -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.