mirror of
https://github.com/zeldaret/oot
synced 2026-07-07 05:55:16 -04:00
Fix macOS build for clang 17 (#2657)
This commit is contained in:
@@ -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) \
|
||||
|
||||
Reference in New Issue
Block a user