summaryrefslogtreecommitdiff
path: root/testsuite/tests/tool-ocaml/t210-setfield1.ml
blob: ffbdc0f202da2aeb463008ab42544ae167e7d98a (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
(* TEST
 include tool-ocaml-lib;
 flags = "-w -a";
 ocaml_script_as_argument = "true";
 setup-ocaml-build-env;
 ocaml;
*)

open Lib;;
type t = {
  mutable a : int;
  mutable b : int;
};;

let x = {a = 7; b = 6} in
x.b <- 11;
if x.b <> 11 then raise Not_found;
x
;;

(**
       0 CONSTINT 42
       2 PUSHACC0
       3 MAKEBLOCK1 0
       5 POP 1
       7 SETGLOBAL Lib
       9 CONSTINT 6
      11 PUSHCONSTINT 7
      13 MAKEBLOCK2 0
      15 PUSHCONSTINT 11
      17 PUSHACC1
      18 SETFIELD1
      19 CONSTINT 11
      21 PUSHACC1
      22 GETFIELD1
      23 NEQ
      24 BRANCHIFNOT 31
      26 GETGLOBAL Not_found
      28 MAKEBLOCK1 0
      30 RAISE
      31 ACC0
      32 POP 1
      34 ATOM0
      35 SETGLOBAL T210-setfield1
      37 STOP
**)