mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-20 02:31:37 +00:00
[OCaml] Unbreak Llvm_target.TargetMachine.set_verbose_asm
Patch by Jacques-Pascal Deplaix git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210480 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fdea941583
commit
08e709589d
@ -352,8 +352,8 @@ CAMLprim value llvm_targetmachine_data_layout(value Machine) {
|
||||
CAMLreturn(DataLayout);
|
||||
}
|
||||
|
||||
/* TargetMachine.t -> bool -> unit */
|
||||
CAMLprim value llvm_targetmachine_set_verbose_asm(value Machine, value Verb) {
|
||||
/* bool -> TargetMachine.t -> unit */
|
||||
CAMLprim value llvm_targetmachine_set_verbose_asm(value Verb, value Machine) {
|
||||
LLVMSetTargetMachineAsmVerbosity(TargetMachine_val(Machine), Bool_val(Verb));
|
||||
return Val_unit;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user