3 public static ulong test_call (ulong a
, ulong b
) {
7 public static int test_alu ()
33 if (~b
!= 0xffffffffffffffff)
39 public static int test_branch ()
41 ulong a
= 5, b
= 5, t
;
43 if (a
== b
) t
= 1; else t
= 0;
46 if (a
!= b
) t
= 0; else t
= 1;
49 if (a
>= b
) t
= 1; else t
= 0;
52 if (a
> b
) t
= 0; else t
= 1;
55 if (a
<= b
) t
= 1; else t
= 0;
58 if (a
< b
) t
= 0; else t
= 1;
64 public static int Main() {
67 if (test_call (3, 5) != 8)
71 if (test_branch () != 0)