[OCaml] Add missing instruction opcodes to OCaml API

Summary:
The OCaml bindings have become out of date and several opcodes have
been added to the C API without corresponding additions to the OCaml
API.

Reviewers: whitequark, mgorny

Reviewed By: whitequark

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D52196

llvm-svn: 342427
This commit is contained in:
whitequark 2018-09-18 00:00:53 +00:00
parent 123e0cf60a
commit 4c155a3665
3 changed files with 13 additions and 1 deletions

View File

@ -238,6 +238,12 @@ module Opcode = struct
| AtomicRMW
| Resume
| LandingPad
| AddrSpaceCast
| CleanupRet
| CatchRet
| CatchPad
| CleanupPad
| CatchSwitch
end
module LandingPadClauseTy = struct

View File

@ -260,6 +260,12 @@ module Opcode : sig
| AtomicRMW
| Resume
| LandingPad
| AddrSpaceCast
| CleanupRet
| CatchRet
| CatchPad
| CleanupPad
| CatchSwitch
end
(** The type of a clause of a [landingpad] instruction.

View File

@ -1515,7 +1515,7 @@ CAMLprim value llvm_instr_get_opcode(LLVMValueRef Inst) {
if (!LLVMIsAInstruction(Inst))
failwith("Not an instruction");
o = LLVMGetInstructionOpcode(Inst);
assert (o <= LLVMLandingPad);
assert (o <= LLVMCatchSwitch);
return Val_int(o);
}