svn commit: r328159 - head/sys/modules

Conrad Meyer cem at FreeBSD.org
Fri Jan 19 04:34:07 UTC 2018


Author: cem
Date: Fri Jan 19 04:34:06 2018
New Revision: 328159
URL: https://svnweb.freebsd.org/changeset/base/328159

Log:
  Unbreak i386 build
  
  The logical result of a right shift >= the width of a type is zero, but our
  compiler decides this is a warning (and thus, error).  Just remove ccp(4)
  from i386.
  
  Reported by:	cy
  Sponsored by:	Dell EMC Isilon

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Fri Jan 19 01:36:25 2018	(r328158)
+++ head/sys/modules/Makefile	Fri Jan 19 04:34:06 2018	(r328159)
@@ -575,7 +575,6 @@ _bxe=		bxe
 .endif
 _cardbus=	cardbus
 _cbb=		cbb
-_ccp=		ccp
 _cpuctl=	cpuctl
 _cpufreq=	cpufreq
 _cs=		cs
@@ -705,6 +704,7 @@ _x86bios=	x86bios
 .endif
 
 .if ${MACHINE_CPUARCH} == "amd64"
+_ccp=		ccp
 _efirt=		efirt
 _ioat=		ioat
 _ixl=		ixl


More information about the svn-src-head mailing list