From owner-cvs-src-old@FreeBSD.ORG Thu Feb 18 14:29:29 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 6834F106566C for ; Thu, 18 Feb 2010 14:29:29 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 562548FC15 for ; Thu, 18 Feb 2010 14:29:29 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o1IETTqj016841 for ; Thu, 18 Feb 2010 14:29:29 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1IETTMC016840 for cvs-src-old@freebsd.org; Thu, 18 Feb 2010 14:29:29 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <201002181429.o1IETTMC016840@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Thu, 18 Feb 2010 14:28:38 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/i386/xen pmap.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, 18 Feb 2010 14:29:29 -0000 ed 2010-02-18 14:28:38 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c sys/i386/xen pmap.c Log: SVN rev 204041 on 2010-02-18 14:28:38Z by ed Allow the pmap code to be built with GCC from FreeBSD 7 again. This patch basically gives us the best of both worlds. Instead of forcing the compiler to emulate GNU-style inline semantics even though we're using ISO C99, it will only use GNU-style inlining when the compiler is configured that way (__GNUC_GNU_INLINE__). Tested by: jhb Revision Changes Path 1.680 +4 -0 src/sys/amd64/amd64/pmap.c 1.662 +4 -0 src/sys/i386/i386/pmap.c 1.32 +4 -0 src/sys/i386/xen/pmap.c