Author: gordon Date: Sun Dec 30 16:48:58 2007 New Revision: 45463 URL: http://llvm.org/viewvc/llvm-project?rev=45463&view=rev Log: Another backwards compatibility fix.
Modified: llvm/trunk/test/Bindings/Ocaml/executionengine.ml Modified: llvm/trunk/test/Bindings/Ocaml/executionengine.ml URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Bindings/Ocaml/executionengine.ml?rev=45463&r1=45462&r2=45463&view=diff ============================================================================== --- llvm/trunk/test/Bindings/Ocaml/executionengine.ml (original) +++ llvm/trunk/test/Bindings/Ocaml/executionengine.ml Sun Dec 30 16:48:58 2007 @@ -40,14 +40,14 @@ let intgv = GenericValue.of_int i32_type 3 in assert (3 = GenericValue.as_int intgv); - let i32gv = GenericValue.of_int32 i32_type 4l in - assert (4l = GenericValue.as_int32 i32gv); + let i32gv = GenericValue.of_int32 i32_type (Int32.of_int 4) in + assert ((Int32.of_int 4) = GenericValue.as_int32 i32gv); - let nigv = GenericValue.of_nativeint i32_type 5n in - assert (5n = GenericValue.as_nativeint nigv); + let nigv = GenericValue.of_nativeint i32_type (Nativeint.of_int 5) in + assert ((Nativeint.of_int 5) = GenericValue.as_nativeint nigv); - let i64gv = GenericValue.of_int64 i64_type 6L in - assert (6L = GenericValue.as_int64 i64gv) + let i64gv = GenericValue.of_int64 i64_type (Int64.of_int 6) in + assert ((Int64.of_int 6) = GenericValue.as_int64 i64gv) let test_executionengine () = (* create *) _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits