Bug 43583 - [4.5 Regression] "value computed not used" in parallel.c:121:4
Summary: [4.5 Regression] "value computed not used" in parallel.c:121:4
Status: RESOLVED INVALID
Alias: None
Product: gcc
Classification: Unclassified
Component: bootstrap (show other bugs)
Version: 4.5.0
: P3 normal
Target Milestone: 4.5.0
Assignee: Not yet assigned to anyone
URL:
Keywords: build, diagnostic
Depends on:
Blocks:
 
Reported: 2010-03-29 18:49 UTC by Thomas Koenig
Modified: 2010-03-30 17:30 UTC (History)
1 user (show)

See Also:
Host: x86_64-unknown-linux-gnu
Target:
Build:
Known to work: 4.4.0
Known to fail: 4.5.0
Last reconfirmed:


Attachments
config.log in the libgomp directory (8.97 KB, text/plain)
2010-03-29 18:54 UTC, Thomas Koenig
Details
Preprocessed source (14.33 KB, text/plain)
2010-03-29 22:01 UTC, Thomas Koenig
Details
Preprocessed source where the problem occurs for the first time (9.71 KB, text/plain)
2010-03-29 22:06 UTC, Thomas Koenig
Details
Output obtained from adding '-v" to the 32/libgomp Makefile (1.06 KB, text/plain)
2010-03-30 15:10 UTC, Thomas Koenig
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Thomas Koenig 2010-03-29 18:49:03 UTC
Bootstrap fails with revision 157799 on trunk:

/bin/sh ./libtool --tag=CC   --mode=compile /home/ig25/Gcc/trunk-bin/./gcc/xgcc -B/home/ig25/Gcc/trunk-bin/./gcc/ -B/home/ig25/x86_64-unknown-linux-gnu/bin/ -B/home/ig25/x86_64-unknown-linux-gnu/lib/ -isystem /home/ig25/x86_64-unknown-linux-gnu/include -isystem /home/ig25/x86_64-unknown-linux-gnu/sys-include    -DHAVE_CONFIG_H -I. -I../../../../trunk/libgomp  -I../../../../trunk/libgomp/config/linux/x86 -I../../../../trunk/libgomp/config/linux -I../../../../trunk/libgomp/config/posix -I../../../../trunk/libgomp  -Wall -Werror -ftls-model=initial-exec -march=i486 -mtune=i686 -Wc,-pthread -g -O2  -m32 -MT parallel.lo -MD -MP -MF .deps/parallel.Tpo -c -o parallel.lo ../../../../trunk/libgomp/parallel.c
libtool: compile:  /home/ig25/Gcc/trunk-bin/./gcc/xgcc -B/home/ig25/Gcc/trunk-bin/./gcc/ -B/home/ig25/x86_64-unknown-linux-gnu/bin/ -B/home/ig25/x86_64-unknown-linux-gnu/lib/ -isystem /home/ig25/x86_64-unknown-linux-gnu/include -isystem /home/ig25/x86_64-unknown-linux-gnu/sys-include -DHAVE_CONFIG_H -I. -I../../../../trunk/libgomp -I../../../../trunk/libgomp/config/linux/x86 -I../../../../trunk/libgomp/config/linux -I../../../../trunk/libgomp/config/posix -I../../../../trunk/libgomp -Wall -Werror -ftls-model=initial-exec -march=i486 -pthread -mtune=i686 -g -O2 -m32 -MT parallel.lo -MD -MP -MF .deps/parallel.Tpo -c ../../../../trunk/libgomp/parallel.c  -fPIC -DPIC -o .libs/parallel.o
cc1: warnings being treated as errors
../../../../trunk/libgomp/parallel.c: In function 'GOMP_parallel_end':
../../../../trunk/libgomp/parallel.c:121:4: error: value computed is not used
make[9]: *** [parallel.lo] Error 1
make[9]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/32/libgomp'
make[8]: *** [all-recursive] Error 1
make[8]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/32/libgomp'
make[7]: *** [all] Error 2
make[7]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/32/libgomp'
make[6]: *** [multi-do] Error 1
make[6]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/libgomp'
make[5]: *** [all-multi] Error 2
make[5]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/libgomp'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/libgomp'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/libgomp'
make[2]: *** [all-stage1-target-libgomp] Error 2
make[2]: Leaving directory `/home/ig25/Gcc/trunk-bin'
make[1]: *** [stage1-bubble] Error 2
make[1]: Leaving directory `/home/ig25/Gcc/trunk-bin'
make: *** [all] Error 2

configure command was

../trunk/configure --prefix=$HOME --enable-languages=all,ada --with-mpc=/usr/local
Comment 1 Thomas Koenig 2010-03-29 18:54:30 UTC
Created attachment 20253 [details]
config.log in the libgomp directory
Comment 2 Thomas Koenig 2010-03-29 18:57:54 UTC
Trying to get this onto the regression radar..
Comment 3 Thomas Koenig 2010-03-29 18:58:31 UTC
... which of course works better if I get the
"Known to work" and "Known to fail" fields correct.
Comment 4 Andrew Pinski 2010-03-29 20:34:34 UTC
          __sync_fetch_and_add (&gomp_remaining_threads_count,
                                1UL - team->nthreads);

This should not cause a warning to happen.

Can you provide the preprocessed source?

This works for me with:
LAST_UPDATED: Fri Mar 26 18:56:25 UTC 2010 (revision 157759)
Comment 5 Thomas Koenig 2010-03-29 22:01:09 UTC
Created attachment 20254 [details]
Preprocessed source

This is from

~/Gcc/trunk-bin/x86_64-unknown-linux-gnu/32/libgomp

the 32 bit subdirectory
Comment 6 Thomas Koenig 2010-03-29 22:06:08 UTC
Created attachment 20255 [details]
Preprocessed source where the problem occurs for the first time

team.c also shows the problem, this is just the source corresponding
to the original error.
Comment 7 Andrew Pinski 2010-03-29 22:17:45 UTC
I just was about to bootstrap with [trunk revision 157804].
Comment 8 Richard Biener 2010-03-30 14:21:38 UTC
It doesn't warn for me.  Please provide -v output of the command that warns
for team.i or parallel.i.

tmp> /abuild/rguenther/trunk-g/gcc/cc1 -quiet -o /dev/null -Wall -O2 parallel.i -m32 -g -march=i486 -ftls-model=initial-exec -mtune=i686 -Werror
tmp>
Comment 9 Thomas Koenig 2010-03-30 15:10:27 UTC
Created attachment 20257 [details]
Output obtained from adding '-v" to the 32/libgomp Makefile

Here's the output of "make", just after having added "-v" to
the options of the relevant Makefile.
Comment 10 Richard Biener 2010-03-30 15:16:45 UTC
Err,

cc1: error: unrecognized command line option "-fsave-temps"

but - still works for me.  How did you configure?
Comment 11 Thomas Koenig 2010-03-30 15:49:54 UTC
(In reply to comment #10)
> Err,
> 
> cc1: error: unrecognized command line option "-fsave-temps"
> 
> but - still works for me.  How did you configure?


Sorry, that should have been -save-temps.

I added this to the Makefile in x86_64-unknown-linux-gnu/32/libgomp by
hand and messed up that particular option.

This is better:

make[9]: Entering directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/32/libgomp'                                                       
/bin/sh ./libtool --tag=CC   --mode=compile /home/ig25/Gcc/trunk-bin/./gcc/xgcc -B/home/ig25/Gcc/trunk-bin/./gcc/ -B/home/ig25/x86_64-unknown-linux-gnu/bin/ -B/home/ig25/x86_64-unknown-linux-gnu/lib/ -isystem /home/ig25/x86_64-unknown-linux-gnu/include -isystem /home/ig25/x86_64-unknown-linux-gnu/sys-include    -DHAVE_CONFIG_H -I. -I../../../../trunk/libgomp  -I../../../../trunk/libgomp/config/linux/x86 -I../../../../trunk/libgomp/config/linux -I../../../../trunk/libgomp/config/posix -I../../../../trunk/libgomp  -Wall -Werror -v -save-temps -ftls-model=initial-exec -march=i486 -mtune=i686 -Wc,-pthread -g -O2  -m32 -MT parallel.lo -MD -MP -MF .deps/parallel.Tpo -c -o parallel.lo ../../../../trunk/libgomp/parallel.c  
libtool: compile:  /home/ig25/Gcc/trunk-bin/./gcc/xgcc -B/home/ig25/Gcc/trunk-bin/./gcc/ -B/home/ig25/x86_64-unknown-linux-gnu/bin/ -B/home/ig25/x86_64-unknown-linux-gnu/lib/ -isystem /home/ig25/x86_64-unknown-linux-gnu/include -isystem /home/ig25/x86_64-unknown-linux-gnu/sys-include -DHAVE_CONFIG_H -I. -I../../../../trunk/libgomp -I../../../../trunk/libgomp/config/linux/x86 -I../../../../trunk/libgomp/config/linux -I../../../../trunk/libgomp/config/posix -I../../../../trunk/libgomp -Wall -Werror -v -save-temps -ftls-model=initial-exec -march=i486 -pthread -mtune=i686 -g -O2 -m32 -MT parallel.lo -MD -MP -MF .deps/parallel.Tpo -c ../../../../trunk/libgomp/parallel.c  -fPIC -DPIC -o .libs/parallel.o                   
Reading specs from /home/ig25/Gcc/trunk-bin/./gcc/specs                                                                                          
COLLECT_GCC=/home/ig25/Gcc/trunk-bin/./gcc/xgcc                                                                                                  
COLLECT_LTO_WRAPPER=/home/ig25/Gcc/trunk-bin/./gcc/lto-wrapper                                                                                   
Target: x86_64-unknown-linux-gnu                                                                                                                 
Configured with: ../trunk/configure --prefix=/home/ig25 --enable-languages=all,ada --with-mpc=/usr/local : (reconfigured) ../trunk/configure --prefix=/home/ig25 --enable-languages=all,ada --with-mpc=/usr/local                                                                                 
Thread model: posix                                                                                                                              
gcc version 4.5.0 20100330 (experimental) (GCC)                                                                                                  
COLLECT_GCC_OPTIONS='-B/home/ig25/Gcc/trunk-bin/./gcc/' '-B/home/ig25/x86_64-unknown-linux-gnu/bin/' '-B/home/ig25/x86_64-unknown-linux-gnu/lib/' '-isystem' '/home/ig25/x86_64-unknown-linux-gnu/include' '-isystem' '/home/ig25/x86_64-unknown-linux-gnu/sys-include' '-DHAVE_CONFIG_H' '-I.' '-I../../../../trunk/libgomp' '-I../../../../trunk/libgomp/config/linux/x86' '-I../../../../trunk/libgomp/config/linux' '-I../../../../trunk/libgomp/config/posix' '-I../../../../trunk/libgomp' '-Wall' '-Werror' '-v' '-save-temps' '-ftls-model=initial-exec' '-march=i486' '-pthread' '-mtune=i686' '-g' '-O2' '-m32' '-MT' 'parallel.lo' '-MD' '-MP' '-MF' '.deps/parallel.Tpo' '-c' '-fPIC' '-DPIC' '-o' '.libs/parallel.o'                    
 /home/ig25/Gcc/trunk-bin/./gcc/cc1 -E -quiet -v -I. -I../../../../trunk/libgomp -I../../../../trunk/libgomp/config/linux/x86 -I../../../../trunk/libgomp/config/linux -I../../../../trunk/libgomp/config/posix -I../../../../trunk/libgomp -imultilib 32 -iprefix /home/ig25/Gcc/trunk-bin/gcc/../lib/gcc/x86_64-unknown-linux-gnu/4.5.0/ -isystem /home/ig25/Gcc/trunk-bin/./gcc/include -isystem /home/ig25/Gcc/trunk-bin/./gcc/include-fixed -MD .libs/parallel.d -MF .deps/parallel.Tpo -MP -MT parallel.lo -D_REENTRANT -DHAVE_CONFIG_H -DPIC -isystem /home/ig25/x86_64-unknown-linux-gnu/include -isystem /home/ig25/x86_64-unknown-linux-gnu/sys-include ../../../../trunk/libgomp/parallel.c -march=i486 -mtune=i686 -m32 -Wall -Werror -ftls-model=initial-exec -fPIC -g -fworking-directory -O2 -fpch-preprocess -o parallel.i                                                            
ignoring nonexistent directory "/home/ig25/x86_64-unknown-linux-gnu/include"                                                                     
ignoring nonexistent directory "/home/ig25/x86_64-unknown-linux-gnu/sys-include"                                                                 
ignoring nonexistent directory "/home/ig25/Gcc/trunk-bin/gcc/../lib/gcc/x86_64-unknown-linux-gnu/4.5.0/include"                                  
ignoring nonexistent directory "/home/ig25/Gcc/trunk-bin/gcc/../lib/gcc/x86_64-unknown-linux-gnu/4.5.0/include-fixed"                            
ignoring nonexistent directory "/home/ig25/Gcc/trunk-bin/gcc/../lib/gcc/x86_64-unknown-linux-gnu/4.5.0/../../../../x86_64-unknown-linux-gnu/include"                                                                                                                                              
ignoring nonexistent directory "/home/ig25/Gcc/trunk-bin/gcc/../lib/gcc/../../include"                                                           
ignoring nonexistent directory "/home/ig25/Gcc/trunk-bin/gcc/../lib/gcc/../../lib/gcc/x86_64-unknown-linux-gnu/4.5.0/include"                    
ignoring nonexistent directory "/home/ig25/Gcc/trunk-bin/gcc/../lib/gcc/../../lib/gcc/x86_64-unknown-linux-gnu/4.5.0/include-fixed"              
ignoring nonexistent directory "/home/ig25/Gcc/trunk-bin/gcc/../lib/gcc/../../lib/gcc/x86_64-unknown-linux-gnu/4.5.0/../../../../x86_64-unknown-linux-gnu/include"
ignoring duplicate directory "../../../../trunk/libgomp"
#include "..." search starts here:
#include <...> search starts here:
 .
 ../../../../trunk/libgomp
 ../../../../trunk/libgomp/config/linux/x86
 ../../../../trunk/libgomp/config/linux
 ../../../../trunk/libgomp/config/posix
 /home/ig25/Gcc/trunk-bin/./gcc/include
 /home/ig25/Gcc/trunk-bin/./gcc/include-fixed
 /usr/local/include
 /usr/include
End of search list.
COLLECT_GCC_OPTIONS='-B/home/ig25/Gcc/trunk-bin/./gcc/' '-B/home/ig25/x86_64-unknown-linux-gnu/bin/' '-B/home/ig25/x86_64-unknown-linux-gnu/lib/' '-isystem' '/home/ig25/x86_64-unknown-linux-gnu/include' '-isystem' '/home/ig25/x86_64-unknown-linux-gnu/sys-include' '-DHAVE_CONFIG_H' '-I.' '-I../../../../trunk/libgomp' '-I../../../../trunk/libgomp/config/linux/x86' '-I../../../../trunk/libgomp/config/linux' '-I../../../../trunk/libgomp/config/posix' '-I../../../../trunk/libgomp' '-Wall' '-Werror' '-v' '-save-temps' '-ftls-model=initial-exec' '-march=i486' '-pthread' '-mtune=i686' '-g' '-O2' '-m32' '-MT' 'parallel.lo' '-MD' '-MP' '-MF' '.deps/parallel.Tpo' '-c' '-fPIC' '-DPIC' '-o' '.libs/parallel.o'
 /home/ig25/Gcc/trunk-bin/./gcc/cc1 -fpreprocessed parallel.i -quiet -dumpbase parallel.c -march=i486 -mtune=i686 -m32 -auxbase-strip .libs/parallel.o -g -O2 -Wall -Werror -version -ftls-model=initial-exec -fPIC -o parallel.s
GNU C (GCC) version 4.5.0 20100330 (experimental) (x86_64-unknown-linux-gnu)
        compiled by GNU C version 4.4.1 [gcc-4_4-branch revision 150839], GMP version 4.3.1, MPFR version 2.4.1-p5, MPC version 0.8.1
GGC heuristics: --param ggc-min-expand=30 --param ggc-min-heapsize=4096
GNU C (GCC) version 4.5.0 20100330 (experimental) (x86_64-unknown-linux-gnu)
        compiled by GNU C version 4.4.1 [gcc-4_4-branch revision 150839], GMP version 4.3.1, MPFR version 2.4.1-p5, MPC version 0.8.1
GGC heuristics: --param ggc-min-expand=30 --param ggc-min-heapsize=4096
Compiler executable checksum: 3348d511f9258850cd8213c19029c579
cc1: warnings being treated as errors
../../../../trunk/libgomp/parallel.c: In function 'GOMP_parallel_end':
../../../../trunk/libgomp/parallel.c:121:4: error: value computed is not used
make[9]: *** [parallel.lo] Error 1
make[9]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/32/libgomp'
make[8]: *** [all-recursive] Error 1
make[8]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/32/libgomp'
make[7]: *** [all] Error 2
make[7]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/32/libgomp'
make[6]: *** [multi-do] Error 1
make[6]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/libgomp'
make[5]: *** [all-multi] Error 2
make[5]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/libgomp'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/libgomp'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/home/ig25/Gcc/trunk-bin/x86_64-unknown-linux-gnu/libgomp'
make[2]: *** [all-stage1-target-libgomp] Error 2
make[2]: Leaving directory `/home/ig25/Gcc/trunk-bin'
make[1]: *** [stage1-bubble] Error 2
make[1]: Leaving directory `/home/ig25/Gcc/trunk-bin'
make: *** [all] Error 2


And here is the output of manually running the cross-compiler:

ig25@linux-fd1f:~/Gcc/trunk-bin> gcc/xgcc -O2 -Wall -m32 -g -march=i486 -ftls-model=initial-exec -mtune=i686 -Werror -v x86_64-unknown-linux-gnu/32/libgomp/parallel.i
Using built-in specs.
COLLECT_GCC=gcc/xgcc
Target: x86_64-unknown-linux-gnu
Configured with: ../trunk/configure --prefix=/home/ig25 --enable-languages=all,ada --with-mpc=/usr/local : (reconfigured) ../trunk/configure --prefix=/home/ig25 --enable-languages=all,ada --with-mpc=/usr/local
Thread model: posix
gcc version 4.5.0 20100330 (experimental) (GCC)
COLLECT_GCC_OPTIONS='-O2' '-Wall' '-m32' '-g' '-march=i486' '-ftls-model=initial-exec' '-mtune=i686' '-Werror' '-v'
 cc1 -fpreprocessed x86_64-unknown-linux-gnu/32/libgomp/parallel.i -quiet -dumpbase parallel.i -m32 -march=i486 -mtune=i686 -auxbase parallel -g -O2 -Wall -Werror -version -ftls-model=initial-exec -o /tmp/ccv0LXie.s
xgcc: error trying to exec 'cc1': execvp: No such file or directory
ig25@linux-fd1f:~/Gcc/trunk-bin> gcc/cc1 -quiet -o /dev/null -O2 -Wall -m32 -g -march=i486 -ftls-model=initial-exec -mtune=i686 -Werror -v x86_64-unknown-linux-gnu/32/libgomp/parallel.i
ignoring nonexistent directory "/home/ig25/lib/gcc/x86_64-unknown-linux-gnu/4.5.0/../../../../x86_64-unknown-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/local/include
 /home/ig25/include
 /home/ig25/lib/gcc/x86_64-unknown-linux-gnu/4.5.0/include
 /home/ig25/lib/gcc/x86_64-unknown-linux-gnu/4.5.0/include-fixed
 /usr/include
End of search list.
cc1: warnings being treated as errors
../../../../trunk/libgomp/parallel.c: In function 'GOMP_parallel_end':
../../../../trunk/libgomp/parallel.c:121:4: error: value computed is not used
Comment 12 Thomas Koenig 2010-03-30 15:54:55 UTC
Please forget the second half of my previous comment
(I copied / pasted the wrong part).  Here's the actual
output, probably not very useful:

ig25@linux-fd1f:~/Gcc/trunk-bin> gcc/cc1 -quiet -o /dev/null -O2 -Wall -m32 -g -march=i486 -ftls-model=initial-exec -mtune=i686 -Werror -v x86_64-unknown-linux-gnu/32/libgomp/parallel.i
ignoring nonexistent directory "/home/ig25/lib/gcc/x86_64-unknown-linux-gnu/4.5.0/../../../../x86_64-unknown-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/local/include
 /home/ig25/include
 /home/ig25/lib/gcc/x86_64-unknown-linux-gnu/4.5.0/include
 /home/ig25/lib/gcc/x86_64-unknown-linux-gnu/4.5.0/include-fixed
 /usr/include
End of search list.
cc1: warnings being treated as errors
../../../../trunk/libgomp/parallel.c: In function 'GOMP_parallel_end':
../../../../trunk/libgomp/parallel.c:121:4: error: value computed is not used


Comment 13 Richard Biener 2010-03-30 16:00:46 UTC
(In reply to comment #12)
> Please forget the second half of my previous comment
> (I copied / pasted the wrong part).  Here's the actual
> output, probably not very useful:
> 
> ig25@linux-fd1f:~/Gcc/trunk-bin> gcc/cc1 -quiet -o /dev/null -O2 -Wall -m32 -g
> -march=i486 -ftls-model=initial-exec -mtune=i686 -Werror -v
> x86_64-unknown-linux-gnu/32/libgomp/parallel.i
> ignoring nonexistent directory
> "/home/ig25/lib/gcc/x86_64-unknown-linux-gnu/4.5.0/../../../../x86_64-unknown-linux-gnu/include"
> #include "..." search starts here:
> #include <...> search starts here:
>  /usr/local/include
>  /home/ig25/include
>  /home/ig25/lib/gcc/x86_64-unknown-linux-gnu/4.5.0/include
>  /home/ig25/lib/gcc/x86_64-unknown-linux-gnu/4.5.0/include-fixed
>  /usr/include
> End of search list.
> cc1: warnings being treated as errors
> ../../../../trunk/libgomp/parallel.c: In function 'GOMP_parallel_end':
> ../../../../trunk/libgomp/parallel.c:121:4: error: value computed is not used
> 

/tmp> /abuild/rguenther/trunk-g/gcc/xgcc -B /abuild/rguenther/trunk-g/gcc -S -o /dev/null -O2 -Wall -m32 -g -march=i486 -ftls-model=initial-exec -mtune=i686 -Werror team.i -v
Reading specs from /abuild/rguenther/trunk-g/gcc/specs
COLLECT_GCC=/abuild/rguenther/trunk-g/gcc/xgcc
COLLECT_LTO_WRAPPER=/abuild/rguenther/trunk-g/gcc/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: /space/rguenther/src/svn/trunk/configure --disable-bootstrap --disable-nls --disable-libstdcxx-pch --enable-lto --enable-languages=c,ada,c++,fortran,java,lto,objc,obj-c++ --enable-gold --with-plugin-ld=/usr/bin/gold : (reconfigured)  : (reconfigured)  : (reconfigured)  : (reconfigured)  : (reconfigured)  : (reconfigured)  : (reconfigured) /space/rguenther/src/svn/trunk/configure --disable-bootstrap --disable-nls --disable-libstdcxx-pch --enable-lto --enable-gold --with-plugin-ld=/usr/bin/gold CFLAGS=-g --enable-languages=c,ada,c++,fortran,java,lto,objc,obj-c++ --no-create --no-recursion : (reconfigured)  : (reconfigured)  : (reconfigured)  : (reconfigured)  : (reconfigured)  : (reconfigured)  : (reconfigured)  : (reconfigured)  : (reconfigured)  : (reconfigured) 
Thread model: posix
gcc version 4.5.0 20100316 (experimental) (GCC) 
COLLECT_GCC_OPTIONS='-B' '/abuild/rguenther/trunk-g/gcc' '-S' '-o' '/dev/null' '-O2' '-Wall' '-m32' '-g' '-march=i486' '-ftls-model=initial-exec' '-mtune=i686' '-Werror' '-v'
 /abuild/rguenther/trunk-g/gcc/cc1 -fpreprocessed team.i -quiet -dumpbase team.i -m32 -march=i486 -mtune=i686 -auxbase-strip /dev/null -g -O2 -Wall -Werror -version -ftls-model=initial-exec -o /dev/null
GNU C (GCC) version 4.5.0 20100330 (experimental) (x86_64-unknown-linux-gnu)
        compiled by GNU C version 4.3.4 [gcc-4_3-branch revision 152973], GMP version 4.3.1, MPFR version 2.3.2, MPC version 0.8.1
GGC heuristics: --param ggc-min-expand=30 --param ggc-min-heapsize=4096
GNU C (GCC) version 4.5.0 20100330 (experimental) (x86_64-unknown-linux-gnu)
        compiled by GNU C version 4.3.4 [gcc-4_3-branch revision 152973], GMP version 4.3.1, MPFR version 2.3.2, MPC version 0.8.1
GGC heuristics: --param ggc-min-expand=30 --param ggc-min-heapsize=4096
Compiler executable checksum: d120cdac577033febb1405d25e77a328
COMPILER_PATH=/abuild/rguenther/trunk-g/gcc/
LIBRARY_PATH=/abuild/rguenther/trunk-g/gcc/32/:/lib/../lib/:/usr/lib/../lib/:/abuild/rguenther/trunk-g/gcc/:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-B' '/abuild/rguenther/trunk-g/gcc' '-S' '-o' '/dev/null' '-O2' '-Wall' '-m32' '-g' '-march=i486' '-ftls-model=initial-exec' '-mtune=i686' '-Werror' '-v'
/tmp>

that's with revision 157820.

Thus, I can't reproduce it.
Comment 14 Jakub Jelinek 2010-03-30 16:13:06 UTC
I can't reproduce this iether.
Comment 15 Thomas Koenig 2010-03-30 17:30:58 UTC
This was caused by a local modification on my tree.

Sorry for the noise :-(

Closing as invalid.