summaryrefslogtreecommitdiff
path: root/testsuite/tests/tool-ocaml/t210-setfield2.ml
blob: 7a46e87aa6fabe13553d52c0f0d1aa03f58e5189 (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
(* 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;
  mutable c : int;
};;

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

(**
       0 CONSTINT 42
       2 PUSHACC0
       3 MAKEBLOCK1 0
       5 POP 1
       7 SETGLOBAL Lib
       9 CONSTINT 5
      11 PUSHCONSTINT 6
      13 PUSHCONSTINT 7
      15 MAKEBLOCK3 0
      17 PUSHCONSTINT 11
      19 PUSHACC1
      20 SETFIELD2
      21 CONSTINT 11
      23 PUSHACC1
      24 GETFIELD2
      25 NEQ
      26 BRANCHIFNOT 33
      28 GETGLOBAL Not_found
      30 MAKEBLOCK1 0
      32 RAISE
      33 ACC0
      34 POP 1
      36 ATOM0
      37 SETGLOBAL T210-setfield2
      39 STOP
**)