summaryrefslogtreecommitdiff
path: root/testsuite/tests/tool-ocaml/t170-envacc2.ml
blob: 19c183fb851116f66bc68953d8b512afb582ee32 (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
(* 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 f _ = ignore x; y in
if f 0 <> 2 then raise Not_found
;;

(**
       0 CONSTINT 42
       2 PUSHACC0
       3 MAKEBLOCK1 0
       5 POP 1
       7 SETGLOBAL Lib
       9 BRANCH 16
      11 ENVACC1
      12 CONST0
      13 ENVACC2
      14 RETURN 1
      16 CONSTINT 5
      18 PUSHCONST2
      19 PUSHACC0
      20 PUSHACC2
      21 CLOSURE 2, 11
      24 PUSHCONST2
      25 PUSHCONST0
      26 PUSHACC2
      27 APPLY1
      28 NEQ
      29 BRANCHIFNOT 36
      31 GETGLOBAL Not_found
      33 MAKEBLOCK1 0
      35 RAISE
      36 POP 3
      38 ATOM0
      39 SETGLOBAL T170-envacc2
      41 STOP
**)