From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28825 invoked by alias); 16 Feb 2005 19:50:39 -0000 Mailing-List: contact cgen-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cgen-owner@sources.redhat.com Received: (qmail 27632 invoked from network); 16 Feb 2005 19:49:56 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 16 Feb 2005 19:49:56 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j1GJnu38019774 for ; Wed, 16 Feb 2005 14:49:56 -0500 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j1GJnuO31015 for ; Wed, 16 Feb 2005 14:49:56 -0500 Received: from [172.16.26.3] (vpn26-3.sfbay.redhat.com [172.16.26.3]) by potter.sfbay.redhat.com (8.12.8/8.12.8) with ESMTP id j1GJnr5s015759 for ; Wed, 16 Feb 2005 14:49:54 -0500 Message-ID: <4213A3EB.7070906@redhat.com> Date: Wed, 16 Feb 2005 19:50:00 -0000 From: Dave Brolley User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax) MIME-Version: 1.0 To: cgen@sources.redhat.com Subject: [commit] logit message demotion Content-Type: multipart/mixed; boundary="------------000007000405020407000008" X-SW-Source: 2005-q1/txt/msg00031.txt.bz2 This is a multi-part message in MIME format. --------------000007000405020407000008 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 216 Hi, I've commited the attached patch which demotes the logit message for a new derived operand to level 2. The default level is 1 and all the other level 1 messages are to log the start/end of major passes. Dave --------------000007000405020407000008 Content-Type: text/plain; name="cgen-log.ChangeLog" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="cgen-log.ChangeLog" Content-length: 135 2005-02-16 Dave Brolley * operand.scm (-derived-operand-parse): Move logit message from level 1 to level 2. --------------000007000405020407000008 Content-Type: text/plain; name="cgen-log.patch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="cgen-log.patch.txt" Content-length: 1395 Index: cgen/operand.scm =================================================================== RCS file: /cvs/src/src/cgen/operand.scm,v retrieving revision 1.8 diff -c -p -r1.8 operand.scm *** cgen/operand.scm 16 Jul 2003 05:35:47 -0000 1.8 --- cgen/operand.scm 16 Feb 2005 19:36:34 -0000 *************** *** 1,5 **** ; Operands ! ; Copyright (C) 2000, 2001 Red Hat, Inc. ; This file is part of CGEN. ; See file COPYING.CGEN for details. --- 1,5 ---- ; Operands ! ; Copyright (C) 2000, 2001, 2005 Red Hat, Inc. ; This file is part of CGEN. ; See file COPYING.CGEN for details. *************** *** 869,875 **** ;(elm-set! result 'hw-name base-ifield) (elm-set! result 'index parsed-encoding) ; (elm-set! result 'index (hw-index-derived)) ; A temporary dummy ! (logit 1 "new derived-operand; name=" name " hw-name= " (op:hw-name result) " index=" (obj:name parsed-encoding) "\n") (derived-ifield-set-owner! parsed-encoding result) result)) --- 869,875 ---- ;(elm-set! result 'hw-name base-ifield) (elm-set! result 'index parsed-encoding) ; (elm-set! result 'index (hw-index-derived)) ; A temporary dummy ! (logit 2 "new derived-operand; name=" name " hw-name= " (op:hw-name result) " index=" (obj:name parsed-encoding) "\n") (derived-ifield-set-owner! parsed-encoding result) result)) --------------000007000405020407000008--