From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: Optimized gcc 4.3.0 build on Windows returns 0 secs for all time values of system-process-attributes Date: Sun, 4 Jan 2009 03:30:05 +0100 Message-ID: References: <49601DD3.2010107@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1231036226 17883 80.91.229.12 (4 Jan 2009 02:30:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 4 Jan 2009 02:30:26 +0000 (UTC) Cc: Eli Zaretskii , emacs-devel@gnu.org To: "Jason Rumney" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jan 04 03:31:37 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LJIm7-0000Jk-CO for ged-emacs-devel@m.gmane.org; Sun, 04 Jan 2009 03:31:35 +0100 Original-Received: from localhost ([127.0.0.1]:41343 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LJIkp-0005Nb-WB for ged-emacs-devel@m.gmane.org; Sat, 03 Jan 2009 21:30:16 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LJIkm-0005NI-LC for emacs-devel@gnu.org; Sat, 03 Jan 2009 21:30:12 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LJIkj-0005Mt-4t for emacs-devel@gnu.org; Sat, 03 Jan 2009 21:30:12 -0500 Original-Received: from [199.232.76.173] (port=60833 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LJIkj-0005Mq-1F for emacs-devel@gnu.org; Sat, 03 Jan 2009 21:30:09 -0500 Original-Received: from an-out-0708.google.com ([209.85.132.240]:36397) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LJIkh-0004PI-5y; Sat, 03 Jan 2009 21:30:07 -0500 Original-Received: by an-out-0708.google.com with SMTP id c38so2185549ana.21 for ; Sat, 03 Jan 2009 18:30:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=6dGMCOGEzxK0KHILYsje/h3S3jQSSYf/ILIn+umk1X0=; b=iHXWhW+hgB7Hc4fyzQu15t1kpyYbTkrh4J4AJHRL9hEElGapgRppbZefkV4/W2FJJc WfoqRE8LzTEwZSPk1Vx7LSzEN5LwmZ2yEn6z7Iwo0XFztRWVxdsUTQ1cvpA9rOwNN+C5 o0DuWHQYsntvUY07JQC0Ad807M+b5GQgyjmu8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=W/pqoLLpcKmtRbJzwma2XjW7LT/ILOTpTSmiBlf63iY9iQU9rXwrfGi6jjpafPNC1f rydr+ZurqNUlgJPAimSNDelOinjOmDrnbOantD48YCKmCAZ1LUuEnnColEYq55BONqJW fBLf2sh8YwnZk4vAqc/174omBJr7MMOWZu/Pk= Original-Received: by 10.100.132.14 with SMTP id f14mr10451748and.107.1231036205945; Sat, 03 Jan 2009 18:30:05 -0800 (PST) Original-Received: by 10.100.13.13 with HTTP; Sat, 3 Jan 2009 18:30:05 -0800 (PST) In-Reply-To: <49601DD3.2010107@gnu.org> Content-Disposition: inline X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:107558 Archived-At: On Sun, Jan 4, 2009 at 03:24, Jason Rumney wrote: > This seems to be doing more than just converting a value to ularge. It seems > to be more like a ULARGE_DIVIDE. Yes. In the patch I'm working on, it is used with div = 0 (four times) and div = 10L (two times). Perhaps it'd be cleaner just to take the division out for these two cases. Juanma