From owner-svn-src-all@FreeBSD.ORG Thu Jan 8 14:14:40 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40300997; Thu, 8 Jan 2015 14:14:40 +0000 (UTC) Received: from sakura.ccs.furiru.org (sakura.ccs.furiru.org [IPv6:2001:2f0:104:8060::1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EB70B6A3; Thu, 8 Jan 2015 14:14:39 +0000 (UTC) Received: from localhost (authenticated bits=0) by sakura.ccs.furiru.org (unknown) with ESMTPA id t08EEZBu020864; Thu, 8 Jan 2015 23:14:37 +0900 (JST) (envelope-from nyan@FreeBSD.org) Date: Thu, 08 Jan 2015 23:14:35 +0900 (JST) Message-Id: <20150108.231435.1379700739664448165.nyan@FreeBSD.org> To: imp@freebsd.org Subject: Re: svn commit: r276801 - head/sys/i386/i386 From: TAKAHASHI Yoshihiro In-Reply-To: <201501080039.t080df3O011578@svn.freebsd.org> References: <201501080039.t080df3O011578@svn.freebsd.org> X-Mailer: Mew version 6.3 on Emacs 24.3 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 14:14:40 -0000 In article <201501080039.t080df3O011578@svn.freebsd.org> Warner Losh writes: > Author: imp > Date: Thu Jan 8 00:39:40 2015 > New Revision: 276801 > URL: https://svnweb.freebsd.org/changeset/base/276801 > > Log: > Don't call the SSE routines when they aren't enabled (or even compiled > into the kernel). > > +#if !defined(CPU_DISABLE_SSE) && defined(I686_CPU) > +#define CPU_ENABLE_SSE > +#endif % grep CPU_DISABLE_SSE options.* options.i386:CPU_DISABLE_SSE opt_cpu.h options.pc98:CPU_DISABLE_SSE opt_cpu.h So including opt_cpu.h is required. --- TAKAHASHI Yoshihiro