Sfoglia il codice sorgente

*** empty log message ***

florian 24 anni fa
parent
commit
99fbea55b7
1 ha cambiato i file con 12 aggiunte e 0 eliminazioni
  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.