From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25572 invoked by alias); 30 Jul 2003 13:24:14 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 25564 invoked from network); 30 Jul 2003 13:24:13 -0000 Received: from unknown (HELO dellpi.pinski.fam) (216.196.143.132) by sources.redhat.com with SMTP; 30 Jul 2003 13:24:13 -0000 Received: from physics.uc.edu (IDENT:pinskia@localhost.pinski.fam [127.0.0.1]) by dellpi.pinski.fam (8.12.2/8.12.1) with ESMTP id h6UDO509018972; Wed, 30 Jul 2003 09:24:06 -0400 (EDT) Date: Wed, 30 Jul 2003 13:46:00 -0000 Subject: Re: std::pow implementation Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) Cc: Andrew Pinski , Gabriel Dos Reis , gcc@gcc.gnu.org To: Martin Reinecke From: Andrew Pinski In-Reply-To: <3F27C5DE.2010604@mpa-garching.mpg.de> Message-Id: <16A36BDD-C291-11D7-AC2E-000393A6D2F2@physics.uc.edu> Content-Transfer-Encoding: 7bit X-SW-Source: 2003-07/txt/msg02150.txt.bz2 On Wednesday, Jul 30, 2003, at 09:19 US/Eastern, Martin Reinecke wrote: > This could change if gcc starts to inline functions across translation > units, > but currently it doesn't (I believe). It does in the mainline if you put all the files as arguments to gcc. Example: gcc temp.cc temp1.cc temp2.cc -o temp.o gcc temp.o -o temp This will cause intermodular optimizations. This was put on the mainline in July 11, 2003. Thanks, Andrew Pinski