https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=135718
--- Comment #6 from Andrey A. Chernov <[email protected]> --- What is must be done in machine independent code is really simple: 1) #define SWAPINIT_long(a, es) swaptype_long = ... #define SWAPINIT_int(a, es) swaptype_int = ... 2) Call both SWAPINITs instead of one. 3) if (swaptype_long <= 1) swapcode(long, a, b, n) else if (swaptype_int <= 1) swapcode(int, a, b, n) else swapcode(char, a, b, n) -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
