summaryrefslogtreecommitdiff
path: root/MLKCompiledClosure.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-16 15:28:10 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-16 15:42:11 +0200
commitbe719f278f6b7c58cb2f0dfbd6edce19a3df85cc (patch)
treeb2acaeccc1416a72caeb717f71244412fc9e4281 /MLKCompiledClosure.m
parent6f05d2a89573bd0cb6bb93d8c5a900254e711339 (diff)
LLVM compiler: Remove various debugging messages.
Diffstat (limited to 'MLKCompiledClosure.m')
-rw-r--r--MLKCompiledClosure.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/MLKCompiledClosure.m b/MLKCompiledClosure.m
index 6eb9154..c9f1e97 100644
--- a/MLKCompiledClosure.m
+++ b/MLKCompiledClosure.m
@@ -86,11 +86,11 @@
format:@"FFI type is invalid (this is probably a bug)."];
}
- NSLog (@"Calling %p (argc = %d)", _code, argc);
- for (i = 0; i < argc; i++)
- {
- NSLog (@"Argument %d: %p", i, *((void**)argv[i]));
- }
+// NSLog (@"Calling %p (argc = %d)", _code, argc);
+// for (i = 0; i < argc; i++)
+// {
+// NSLog (@"Argument %d: %p", i, *((void**)argv[i]));
+// }
ffi_call (&cif, FFI_FN (_code), &return_value, (void**)argv);