diff options
-rw-r--r-- | MLKCompiledClosure.m | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/MLKCompiledClosure.m b/MLKCompiledClosure.m index c2ab290..6737acc 100644 --- a/MLKCompiledClosure.m +++ b/MLKCompiledClosure.m @@ -86,9 +86,16 @@ format:@"FFI type is invalid (this is probably a bug)."]; } + NSLog (@"Calling %p (argc = %d)", _code, argc); + _code(0, MLKEndOfArgumentsMarker); + for (i = 0; i < argc; i++) + { + NSLog (@"Argument %d: %p", i, *((void**)argv[i])); + } + ffi_call (&cif, FFI_FN (_code), &return_value, (void**)argv); - // FIXME + // FIXME: multiple values return [NSArray arrayWithObject:nullify(return_value)]; } |