From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14456 invoked by alias); 6 Apr 2003 17:16:01 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 14428 invoked by uid 71); 6 Apr 2003 17:16:01 -0000 Date: Sun, 06 Apr 2003 17:16:00 -0000 Message-ID: <20030406171601.14426.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Diego Novillo Subject: Re: c/10320: [3.4 regression] gcc 3.4 gets rid of static inline function that does not get inlined Reply-To: Diego Novillo X-SW-Source: 2003-04/txt/msg00201.txt.bz2 List-Id: The following reply was made to PR c/10320; it has been noted by GNATS. From: Diego Novillo To: pinskia@physics.uc.edu Cc: gcc-gnats@gcc.gnu.org Subject: Re: c/10320: [3.4 regression] gcc 3.4 gets rid of static inline function that does not get inlined Date: Sun, 6 Apr 2003 13:13:29 -0400 On Sun, 06 Apr 2003, pinskia@physics.uc.edu wrote: > compile and link and run (try at least) the following source: > static inline void temp(); > int main() > { > temp(); > return 0; > } > static void temp(){} > Hmm, I can't reproduce this on ssa-branch (PPC/Linux): ----------------------------------------------------------------------------- ./cc1 -fpreprocessed a.i -quiet -dumpbase a.c -auxbase a -O2 -version -o a.s GNU C version 3.5-tree-ssa 20030302 (experimental) (powerpc-unknown-linux-gnu) compiled by GNU C version 3.5-tree-ssa 20030302 (experimental). GGC heuristics: --param ggc-min-expand=38 --param ggc-min-heapsize=15614 as --traditional-format -mppc -V -Qy -o a.o a.s GNU assembler version 2.10.91 (ppc-yellowdog-linux) using BFD version 2.10.0.33 ./collect2 -V -Qy -m elf32ppclinux -dynamic-linker /lib/ld.so.1 -o a /usr/lib/crt1.o /usr/lib/crti.o ./crtbegin.o -L. -L/home/dnovillo/clean-tree-ssa/native.ppc/lib/gcc-lib/powerpc-unknown-linux-gnu/3.5-tree-ssa -L/home/dnovillo/clean-tree-ssa/native.ppc/lib/gcc-lib/powerpc-unknown-linux-gnu/3.5-tree-ssa/../../.. a.o -lgcc -lgcc_eh -lc -lgcc -lgcc_eh ./crtsavres.o ./crtend.o /usr/lib/crtn.o GNU ld version 2.10.91 (with BFD 2.10.0.33) Supported emulations: elf32ppclinux elf32ppc elf32ppcsim ----------------------------------------------------------------------------- Can you send me the bootstrap failure message you get on Darwin? Diego.