Browse Source

*** empty log message ***

florian 24 years ago
parent
commit
99fbea55b7
1 changed files with 12 additions and 0 deletions
  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.