Skip to content

Commit

Permalink
slow-hash: default to JIT on x86_64
Browse files Browse the repository at this point in the history
  • Loading branch information
moneromooo-monero committed Mar 21, 2019
1 parent f2f725d commit efb2bdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crypto/slow-hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static inline int use_v4_jit(void)

const char *env = getenv("MONERO_USE_CNV4_JIT");
if (!env) {
use_v4_jit_flag = 0;
use_v4_jit_flag = 1;
}
else if (!strcmp(env, "0") || !strcmp(env, "no")) {
use_v4_jit_flag = 0;
Expand Down

0 comments on commit efb2bdd

Please sign in to comment.