Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Apr 2020 04:01:12 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r359640 - stable/12/lib/liblzma
Message-ID:  <202004050401.03541Cq6020671@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Sun Apr  5 04:01:11 2020
New Revision: 359640
URL: https://svnweb.freebsd.org/changeset/base/359640

Log:
  Disable use of bswapxx with GCC.

Modified:
  stable/12/lib/liblzma/config.h

Modified: stable/12/lib/liblzma/config.h
==============================================================================
--- stable/12/lib/liblzma/config.h	Sun Apr  5 03:26:40 2020	(r359639)
+++ stable/12/lib/liblzma/config.h	Sun Apr  5 04:01:11 2020	(r359640)
@@ -312,15 +312,15 @@
 #define HAVE__MM_MOVEMASK_EPI8 1
 #endif
 
+#if defined(__clang__) && defined(__FreeBSD__)
 /* Define to 1 if the GNU C extension __builtin_assume_aligned is supported.
    */
-#if defined(__clang__) && defined(__FreeBSD__)
 #define HAVE___BUILTIN_ASSUME_ALIGNED 1
-#endif
 
 /* Define to 1 if the GNU C extensions __builtin_bswap16/32/64 are supported.
    */
 #define HAVE___BUILTIN_BSWAPXX 1
+#endif
 
 /* Define to the sub-directory where libtool stores uninstalled libraries. */
 #define LT_OBJDIR ".libs/"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004050401.03541Cq6020671>