1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-28 18:01:32 +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" \ __asm__("multu %2,%3\n\t" \
"mflo %0\n\t" \ "mflo %0\n\t" \
"mfhi %1" \ "mfhi %1" \
: "=d"(w0), "=d"(w1) \ : "=r"(w0), "=r"(w1) \
: "d"((USItype)(u)), "d"((USItype)(v))) : "r"((USItype)(u)), "r"((USItype)(v)))
#endif #endif
#define udiv_qrnnd(q, r, n1, n0, d) \ #define udiv_qrnnd(q, r, n1, n0, d) \