diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-12-02 21:44:35 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-12-02 21:44:35 +0100 |
| commit | 40a81173f395ff3f7da28e5034a09b248dc97fb4 (patch) | |
| tree | 2f16fec9d068b987ad210e807080eb27a0b787e0 /src/main.c | |
| parent | 19a66086195dc97ca316af78258653144eb19695 (diff) | |
| download | box64-40a81173f395ff3f7da28e5034a09b248dc97fb4.tar.gz box64-40a81173f395ff3f7da28e5034a09b248dc97fb4.zip | |
[ARM64_DYNAREC] Restaured Memory Barrier on LOCK operation, and disable the use of Atomic extension for now (there is an issue somewhere)
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 5b4312f2..ce34ccb9 100644 --- a/src/main.c +++ b/src/main.c @@ -377,8 +377,8 @@ HWCAP2_ECV arm64_pmull = 1; if(hwcap&HWCAP_AES) arm64_aes = 1; - if(hwcap&HWCAP_ATOMICS) - arm64_atomics = 1; + /*if(hwcap&HWCAP_ATOMICS) + arm64_atomics = 1;*/ #ifdef HWCAP_SHA1 if(hwcap&HWCAP_SHA1) arm64_sha1 = 1; |