mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-29 22:30:33 +00:00
[OCaml] Unbreak Llvm_target.TargetMachine.set_verbose_asm
Patch by Jacques-Pascal Deplaix llvm-svn: 210480
This commit is contained in:
parent
de9b19fdc2
commit
5c56850c1f
@ -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…
Reference in New Issue
Block a user