diff options
Diffstat (limited to 'src/dynarec/native_lock.h')
| -rw-r--r-- | src/dynarec/native_lock.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dynarec/native_lock.h b/src/dynarec/native_lock.h index 5d4514ec..ba4cb131 100644 --- a/src/dynarec/native_lock.h +++ b/src/dynarec/native_lock.h @@ -19,6 +19,7 @@ #define native_lock_xchg_h(A, B) arm64_lock_xchg_h(A, B) #define native_lock_xchg_b(A, B) arm64_lock_xchg_b(A, B) #define native_lock_storeifref(A, B, C) arm64_lock_storeifref(A, B, C) +#define native_lock_storeifref2(A, B, C) arm64_lock_storeifref2(A, B, C) #define native_lock_storeifref_d(A, B, C) arm64_lock_storeifref_d(A, B, C) #define native_lock_storeifref2_d(A, B, C) arm64_lock_storeifref2_d(A, B, C) #define native_lock_storeifnull(A, B) arm64_lock_storeifnull(A, B) @@ -45,6 +46,7 @@ #define native_lock_xchg_dd(A, B) rv64_lock_xchg_dd(A, B) #define native_lock_xchg_d(A, B) rv64_lock_xchg_d(A, B) #define native_lock_storeifref(A, B, C) rv64_lock_storeifref(A, B, C) +#define native_lock_storeifref2(A, B, C) rv64_lock_storeifref2(A, B, C) #define native_lock_storeifref_d(A, B, C) rv64_lock_storeifref_d(A, B, C) #define native_lock_storeifref2_d(A, B, C) rv64_lock_storeifref2_d(A, B, C) #define native_lock_storeifnull(A, B) rv64_lock_storeifnull(A, B) @@ -83,6 +85,7 @@ #define native_lock_xchg_dd(A, B) la64_lock_xchg_dd(A, B) #define native_lock_xchg_d(A, B) la64_lock_xchg_d(A, B) #define native_lock_storeifref(A, B, C) la64_lock_storeifref(A, B, C) +#define native_lock_storeifref2(A, B, C) la64_lock_storeifref2(A, B, C) #define native_lock_storeifref_d(A, B, C) la64_lock_storeifref_d(A, B, C) #define native_lock_storeifref2_d(A, B, C) la64_lock_storeifref2_d(A, B, C) #define native_lock_storeifnull(A, B) la64_lock_storeifnull(A, B) |