mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
[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:
parent
123e0cf60a
commit
4c155a3665
@ -238,6 +238,12 @@ module Opcode = struct
|
||||
| AtomicRMW
|
||||
| Resume
|
||||
| LandingPad
|
||||
| AddrSpaceCast
|
||||
| CleanupRet
|
||||
| CatchRet
|
||||
| CatchPad
|
||||
| CleanupPad
|
||||
| CatchSwitch
|
||||
end
|
||||
|
||||
module LandingPadClauseTy = struct
|
||||
|
@ -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.
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user