1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-26 17:01:18 +00:00

Fix macOS build for clang 17

This commit is contained in:
cadmic 2025-08-14 15:25:18 -07:00
parent 4c2a451b9c
commit 24a20b194f

View file

@ -92,8 +92,8 @@
__asm__("multu %2,%3\n\t" \
"mflo %0\n\t" \
"mfhi %1" \
: "=d"(w0), "=d"(w1) \
: "d"((USItype)(u)), "d"((USItype)(v)))
: "=r"(w0), "=r"(w1) \
: "r"((USItype)(u)), "r"((USItype)(v)))
#endif
#define udiv_qrnnd(q, r, n1, n0, d) \