Use the ocaml tag 0 since we are just returning an option value.
authorErick Tryzelaar <idadesub@users.sourceforge.net>
Tue, 2 Mar 2010 23:59:08 +0000 (23:59 +0000)
committerErick Tryzelaar <idadesub@users.sourceforge.net>
Tue, 2 Mar 2010 23:59:08 +0000 (23:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97612 91177308-0d34-0410-b5e6-96231b3b80d8

bindings/ocaml/executionengine/executionengine_ocaml.c

index d12a9f7acdeb7f623305bc37d6bcb76285d8254c..1d3e57a705b82c0310ca49bbb3ce00691b92653a 100644 (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);
 }