Author: cognet
Date: Sun Jan 13 00:37:31 2019
New Revision: 342979
URL: https://svnweb.freebsd.org/changeset/base/342979

Log:
  amd64 is the only arch that doesn't require padding for 32bits syscalls, so
  instead of listing every arch thar requires it, just exclude amd64.

Modified:
  head/sys/compat/freebsd32/syscalls.master

Modified: head/sys/compat/freebsd32/syscalls.master
==============================================================================
--- head/sys/compat/freebsd32/syscalls.master   Sun Jan 13 00:19:15 2019        
(r342978)
+++ head/sys/compat/freebsd32/syscalls.master   Sun Jan 13 00:37:31 2019        
(r342979)
@@ -54,7 +54,7 @@
 #include <compat/freebsd32/freebsd32.h>
 #include <compat/freebsd32/freebsd32_proto.h>
 
-#if !defined(PAD64_REQUIRED) && (defined(__powerpc__) || defined(__mips__))
+#if !defined(PAD64_REQUIRED) && !defined(__amd64__)
 #define PAD64_REQUIRED
 #endif
 
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to