From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22734 invoked by alias); 25 Oct 2004 00:24:19 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 22727 invoked from network); 25 Oct 2004 00:24:18 -0000 Received: from unknown (HELO ausmtp02.au.ibm.com) (202.81.18.187) by sourceware.org with SMTP; 25 Oct 2004 00:24:18 -0000 Received: from sd0112e0.au.ibm.com (d23rh903.au.ibm.com [202.81.18.201]) by ausmtp02.au.ibm.com (8.12.10/8.12.10) with ESMTP id i9P0MHmb072330 for ; Mon, 25 Oct 2004 10:22:17 +1000 Received: from ozlabs.au.ibm.com (haven.au.ibm.com [9.190.164.82]) by sd0112e0.au.ibm.com (8.12.10/NCO/VER6.6) with ESMTP id i9P0Pq96076900 for ; Mon, 25 Oct 2004 10:25:52 +1000 Received: from namadgi.ozlabs.ibm.com (localhost [127.0.0.1]) by ozlabs.au.ibm.com (Postfix) with SMTP id 1F5FA17DD8 for ; Mon, 25 Oct 2004 10:24:16 +1000 (EST) Received: by namadgi.ozlabs.ibm.com (sSMTP sendmail emulation); Mon, 25 Oct 2004 10:25:29 +1000 From: "Ben Elliston" To: gcc-patches@gcc.gnu.org Subject: fix typo in cfgcleanup.c Date: Mon, 25 Oct 2004 02:21:00 -0000 Message-ID: <87wtxf3apy.fsf@au.ibm.com> User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2004-10/txt/msg02027.txt.bz2 Committed as obvious. I checked to make sure that no test cases look for this output. Ben 2004-10-23 Ben Elliston * cfgcleanup.c (outgoing_edges_match): Fix typo in dump output. Index: cfgcleanup.c =================================================================== RCS file: /home/bje/gcc-cvs/gcc/gcc/cfgcleanup.c,v retrieving revision 1.133 diff -u -p -r1.133 cfgcleanup.c --- cfgcleanup.c 18 Oct 2004 15:11:25 -0000 1.133 +++ cfgcleanup.c 25 Oct 2004 00:20:42 -0000 @@ -1335,7 +1335,7 @@ outgoing_edges_match (int mode, basic_bl { if (dump_file) fprintf (dump_file, - "Outcomes of branch in bb %i and %i differs to much (%i %i)\n", + "Outcomes of branch in bb %i and %i differs too much (%i %i)\n", bb1->index, bb2->index, b1->probability, prob2); return false;