From owner-cvs-src-old@FreeBSD.ORG Thu Nov 25 18:14:38 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 111C1106564A for ; Thu, 25 Nov 2010 18:14:38 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D84B08FC0A for ; Thu, 25 Nov 2010 18:14:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id oAPIEbxi074955 for ; Thu, 25 Nov 2010 18:14:37 GMT (envelope-from dim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id oAPIEbEW074954 for cvs-src-old@freebsd.org; Thu, 25 Nov 2010 18:14:37 GMT (envelope-from dim@repoman.freebsd.org) Message-Id: <201011251814.oAPIEbEW074954@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to dim@repoman.freebsd.org using -f From: Dimitry Andric Date: Thu, 25 Nov 2010 18:14:18 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa npx.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Nov 2010 18:14:38 -0000 dim 2010-11-25 18:14:18 UTC FreeBSD src repository Modified files: sys/i386/isa npx.c Log: SVN rev 215823 on 2010-11-25 18:14:18Z by dim Use unambiguous inline assembly to load a float variable. GNU as silently converts 'fld' to 'flds', without taking the actual variable type into account (!), but clang's integrated assembler rightfully complains about it. Discussed with: cperciva Revision Changes Path 1.190 +1 -1 src/sys/i386/isa/npx.c