summaryrefslogtreecommitdiff
path: root/testsuite/tests/tool-ocaml/t110-modint-2.ml
blob: 3835861df23bf15fcda44df2714a49f8abf55169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
(* TEST
 include tool-ocaml-lib;
 flags = "-w -a";
 ocaml_script_as_argument = "true";
 setup-ocaml-build-env;
 ocaml;
*)

open Lib;;
try
  ignore (2 mod 0);
  raise Not_found;
with Division_by_zero -> ()
;;

(**
       0 CONSTINT 42
       2 PUSHACC0
       3 MAKEBLOCK1 0
       5 POP 1
       7 SETGLOBAL Lib
       9 PUSHTRAP 19
      11 CONST0
      12 PUSHCONST2
      13 MODINT
      14 GETGLOBAL Not_found
      16 MAKEBLOCK1 0
      18 RAISE
      19 PUSHGETGLOBAL Division_by_zero
      21 PUSHACC1
      22 GETFIELD0
      23 EQ
      24 BRANCHIFNOT 29
      26 CONST0
      27 BRANCH 31
      29 ACC0
      30 RAISE
      31 POP 1
      33 ATOM0
      34 SETGLOBAL T110-modint-2
      36 STOP
**)