From owner-cvs-all Sun Jun 14 08:52:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA17692 for cvs-all-outgoing; Sun, 14 Jun 1998 08:52:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA17679; Sun, 14 Jun 1998 08:52:42 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA09939; Sun, 14 Jun 1998 08:52:02 -0700 (PDT) Date: Sun, 14 Jun 1998 08:52:02 -0700 (PDT) Message-Id: <199806141552.IAA09939@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_bio.c nfs_subs.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/06/14 08:52:02 PDT Modified files: sys/nfs nfs_bio.c nfs_subs.c Log: Avoid an egcs pessimization for 64-bit signed division on i386's. Pre-2.8 versions of gcc generate a call to __divdi3() for all 64-bit signed divisions, but egcs optimizes them to a shift and fixup when the divisor is a constant power of 2. Unfortunately, it generates a call to __cmpdi2() for the fixup, although all except possibly ancient versions of gcc and egcs do ordinary 64-bit comparisons inline. Revision Changes Path 1.59 +2 -2 src/sys/nfs/nfs_bio.c 1.62 +4 -4 src/sys/nfs/nfs_subs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message