diff options
-rw-r--r-- | bindings/ocaml/llvm/llvm.ml | 2 | ||||
-rw-r--r-- | bindings/ocaml/llvm/llvm.mli | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bindings/ocaml/llvm/llvm.ml b/bindings/ocaml/llvm/llvm.ml index 49975650a5..5bc8bca5a3 100644 --- a/bindings/ocaml/llvm/llvm.ml +++ b/bindings/ocaml/llvm/llvm.ml @@ -26,7 +26,6 @@ module TypeKind = struct | Fp128 | Ppc_fp128 | Label - | Metadata | Integer | Function | Struct @@ -34,6 +33,7 @@ module TypeKind = struct | Pointer | Opaque | Vector + | Metadata end module Linkage = struct diff --git a/bindings/ocaml/llvm/llvm.mli b/bindings/ocaml/llvm/llvm.mli index 35c218a752..c7c4d3a9ab 100644 --- a/bindings/ocaml/llvm/llvm.mli +++ b/bindings/ocaml/llvm/llvm.mli @@ -61,7 +61,6 @@ module TypeKind : sig | Fp128 | Ppc_fp128 | Label - | Metadata | Integer | Function | Struct @@ -69,6 +68,7 @@ module TypeKind : sig | Pointer | Opaque | Vector + | Metadata end (** The linkage of a global value, accessed with {!linkage} and |