Skip to content

Commit

Permalink
Fix libretro#16023 - ssl fails on mac x86 with newer clang (libretro#…
Browse files Browse the repository at this point in the history
  • Loading branch information
warmenhoven authored Dec 23, 2023
1 parent 0e7d7e3 commit dc2ae86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deps/mbedtls/mbedtls/bn_mul.h
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@
"addq $8, %%rdi \n\t"

#define MULADDC_STOP \
: "+c" (c), "+D" (d), "+S" (s) \
: "b" (b) \
: "rax", "rdx", "r8" \
: "+c" (c), "+D" (d), "+S" (s), "+m" (*(uint64_t (*)[16]) d) \
: "b" (b), "m" (*(const uint64_t (*)[16]) s) \
: "rax", "rdx", "r8" \
);

#endif /* AMD64 */
Expand Down

0 comments on commit dc2ae86

Please sign in to comment.