summaryrefslogtreecommitdiff
path: root/testsuite/tests/tool-ocaml/t200-getfield3.ml
blob: a0376a1fcfe9ea3f04e1fe2c1be3344c684398ad (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
open Lib;;
type t = {
  a : int;
  b : int;
  c : int;
  d : int;
};;

if { a = 7; b = 6; c = 5; d = 4 }.d <> 4 then raise Not_found;;

(**
       0 CONSTINT 42
       2 PUSHACC0 
       3 MAKEBLOCK1 0
       5 POP 1
       7 SETGLOBAL Lib
       9 CONSTINT 4
      11 PUSHGETGLOBAL <0>(7, 6, 5, 4)
      13 GETFIELD3 
      14 NEQ 
      15 BRANCHIFNOT 22
      17 GETGLOBAL Not_found
      19 MAKEBLOCK1 0
      21 RAISE 
      22 ATOM0 
      23 SETGLOBAL T200-getfield3
      25 STOP 
**)