summaryrefslogtreecommitdiff
path: root/testsuite/tests/tool-ocaml/t171-envacc.ml
blob: f91f4c748ad23818c1adbc5c1967faa288ac7df7 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
(* TEST
 include tool-ocaml-lib;
 flags = "-w -a";
 ocaml_script_as_argument = "true";
 setup-ocaml-build-env;
 ocaml;
*)

open Lib;;
let x = 5 in
let y = 2 in
let z = 1 in
let a = 4 in
let b = 3 in
let f _ = ignore x; ignore y; ignore z; ignore a; b in
if f 0 <> 3 then raise Not_found
;;

(**
       0 CONSTINT 42
       2 PUSHACC0
       3 MAKEBLOCK1 0
       5 POP 1
       7 SETGLOBAL Lib
       9 BRANCH 23
      11 ENVACC1
      12 CONST0
      13 ENVACC2
      14 CONST0
      15 ENVACC3
      16 CONST0
      17 ENVACC4
      18 CONST0
      19 ENVACC 5
      21 RETURN 1
      23 CONSTINT 5
      25 PUSHCONST2
      26 PUSHCONST1
      27 PUSHCONSTINT 4
      29 PUSHCONST3
      30 PUSHACC0
      31 PUSHACC2
      32 PUSHACC4
      33 PUSHACC6
      34 PUSHACC 8
      36 CLOSURE 5, 11
      39 PUSHCONST3
      40 PUSHCONST0
      41 PUSHACC2
      42 APPLY1
      43 NEQ
      44 BRANCHIFNOT 51
      46 GETGLOBAL Not_found
      48 MAKEBLOCK1 0
      50 RAISE
      51 POP 6
      53 ATOM0
      54 SETGLOBAL T171-envacc
      56 STOP
**)