From: jsteube Date: Sat, 16 Jan 2016 11:36:56 +0000 (+0100) Subject: Enable forced JIT compilation for MD5, if requested X-Git-Tag: v3.00-beta~494 X-Git-Url: https://www.flypig.org.uk/git/?a=commitdiff_plain;h=0524e78617c541591c8a468fb3b1f6e5f9663094;p=hashcat.git Enable forced JIT compilation for MD5, if requested --- diff --git a/src/oclHashcat.c b/src/oclHashcat.c index 535ff78..59d77ca 100644 --- a/src/oclHashcat.c +++ b/src/oclHashcat.c @@ -12090,7 +12090,7 @@ int main (int argc, char **argv) * Some algorithm, like descrypt, can benefit from JIT compilation */ - uint force_jit_compilation = 0; + int force_jit_compilation = -1; if (hash_mode == 8900) { @@ -13357,7 +13357,7 @@ int main (int argc, char **argv) const u8 **kernel_sources = (const u8 **) mymalloc (sizeof (u8 *)); - if (force_jit_compilation == 0) + if (force_jit_compilation == -1) { if (cached == 0) {