From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261283AbTDQI7f (ORCPT ); Thu, 17 Apr 2003 04:59:35 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261290AbTDQI7f (ORCPT ); Thu, 17 Apr 2003 04:59:35 -0400 Received: from nat-pool-rdu.redhat.com ([66.187.233.200]:56857 "EHLO devserv.devel.redhat.com") by vger.kernel.org with ESMTP id S261283AbTDQI7e (ORCPT ); Thu, 17 Apr 2003 04:59:34 -0400 Date: Thu, 17 Apr 2003 05:11:27 -0400 From: Jakub Jelinek To: Arjan van de Ven Cc: Roman Zippel , Linus Torvalds , Jeff Garzik , LKML Subject: Re: [BK+PATCH] remove __constant_memcpy Message-ID: <20030417051126.W13397@devserv.devel.redhat.com> Reply-To: Jakub Jelinek References: <1050569207.1412.1.camel@laptop.fenrus.com> <20030417090444.A4209@devserv.devel.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030417090444.A4209@devserv.devel.redhat.com>; from arjanv@redhat.com on Thu, Apr 17, 2003 at 09:04:44AM +0000 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Apr 17, 2003 at 09:04:44AM +0000, Arjan van de Ven wrote: > On Thu, Apr 17, 2003 at 11:02:43AM +0200, Roman Zippel wrote: > > Hi, > > > > On 17 Apr 2003, Arjan van de Ven wrote: > > > > > it can do that ANYWAY for all kinds of things. > > > We really should ask the gcc folks to add a > > > -fdontyoudareusefloatingpoint flag (well different name probably) to > > > make sure it never ever will generate FP code. (would also help catch > > > abusers of FP code in the kernel as a bonus ;) > > > > -msoft-float? > > that is a decent start but has a different effect, eg it doesnt' actually > forbid gcc from generatic fpu code, just tells it to use emu lib functions > for it . But the emu lib functions aren't provided in the kernel, so you'll get errors anyway. On some targets the option is -mno-fpu though (e.g. sparc* kernels use it for eons). Jakub