Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Jan 2018 04:34:06 +0000 (UTC)
From:      Conrad Meyer <cem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r328159 - head/sys/modules
Message-ID:  <201801190434.w0J4Y6i7086677@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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