From owner-cvs-all@FreeBSD.ORG Fri Jul 25 08:54:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F38DF37B401; Fri, 25 Jul 2003 08:54:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E15743F3F; Fri, 25 Jul 2003 08:54:24 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h6PFsO0U031024; Fri, 25 Jul 2003 08:54:24 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h6PFsOxg031023; Fri, 25 Jul 2003 08:54:24 -0700 (PDT) Message-Id: <200307251554.h6PFsOxg031023@repoman.freebsd.org> From: Bruce Evans Date: Fri, 25 Jul 2003 08:54:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/libkern scanc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jul 2003 15:54:25 -0000 bde 2003/07/25 08:54:23 PDT FreeBSD src repository Modified files: sys/libkern scanc.c Log: Backed out the micro-optimization in 1.4. It was to help gcc-2.6.3 on i486's (and probably i386's), but it has had very little effect since gcc-2.7 or gcc-2.95. With gcc-3.3, it gave a small pessimization for at least i386's, athlon-xp's and pentium4's, a small optimization (I think) for pentium1's, and made no difference for i386's. (movzbl is best for all the later processors, and the micro-optimization was to stop it being used on i486's.) Revision Changes Path 1.10 +1 -6 src/sys/libkern/scanc.c