Use the ocaml tag 0 since we are just returning an option value.

llvm-svn: 97612
This commit is contained in:
Erick Tryzelaar 2010-03-02 23:59:08 +00:00
parent 481b9b1d9f
commit 9a8b7c41c3

View File

@ -226,7 +226,7 @@ CAMLprim value llvm_ee_find_function(value Name, LLVMExecutionEngineRef EE) {
LLVMValueRef Found;
if (LLVMFindFunction(EE, String_val(Name), &Found))
CAMLreturn(Val_unit);
Option = alloc(1, 1);
Option = alloc(1, 0);
Field(Option, 0) = Val_op(Found);
CAMLreturn(Option);
}