From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9928 invoked by alias); 23 Mar 2009 12:54:12 -0000 Received: (qmail 9916 invoked by uid 22791); 23 Mar 2009 12:54:11 -0000 X-SWARE-Spam-Status: No, hits=-4.3 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from cantor2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 23 Mar 2009 12:54:05 +0000 Received: from Relay2.suse.de (relay-ext.suse.de [195.135.221.8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id 6F6CF8891E; Mon, 23 Mar 2009 13:54:02 +0100 (CET) Received: from suse.cz (virgil.suse.cz [10.20.5.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.suse.cz (Postfix) with ESMTP id CF6DE62806A; Mon, 23 Mar 2009 13:54:01 +0100 (CET) Date: Mon, 23 Mar 2009 13:11:00 -0000 From: Martin Jambor To: GCC Patches Cc: Gerald Pfeifer Subject: [wwwdocs] Message-ID: <20090323125401.GB4977@virgil.suse.cz> Mail-Followup-To: GCC Patches , Gerald Pfeifer MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline User-Agent: Mutt/1.5.17 (2007-11-01) X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2009-03/txt/msg01031.txt.bz2 Hi, as Steven pointed out, indirect inlining is not listed in changes.html for gcc 4.4. Therefore I would like to commit the following simple paragraph. Is it OK? Thanks, Martin Index: changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/changes.html,v retrieving revision 1.57 diff -u -r1.57 changes.html --- changes.html 20 Mar 2009 16:10:51 -0000 1.57 +++ changes.html 23 Mar 2009 12:47:20 -0000 @@ -120,6 +120,11 @@

General Optimizer Improvements

    +
  • A new command-line switch -findirect-inlining has been + added. When turned on it allows the inliner to also inline indirect + calls that are discovered to have known targets at compile time + thanks to previous inlining.
  • +
  • A new command-line switch -ftree-switch-conversion has been added. This new pass turns simple initializations of scalar variables in switch statements into initializations from a static array,