I added myself (Edward Smith-Rowland) to MAINTAINERS (Write After Approval).
I work on libstdc++. Thanks all, especially my mentors Paolo Carlini and Benjamin Kosnik ;-), Ed Smith-Rowland
Index: libstdc++-v3/include/precompiled/stdc++.h =================================================================== --- libstdc++-v3/include/precompiled/stdc++.h (revision 152686) +++ libstdc++-v3/include/precompiled/stdc++.h (working copy) @@ -101,6 +101,7 @@ #include <condition_variable> #include <forward_list> #include <future> +#include <initializer_list> #include <mutex> #include <random> #include <ratio> Index: libstdc++-v3/ChangeLog =================================================================== --- libstdc++-v3/ChangeLog (revision 152686) +++ libstdc++-v3/ChangeLog (working copy) @@ -1,3 +1,7 @@ +2009-10-13 Edward Smith-Rowland <3dw...@verizon.net> + + * include/precompiled/stdc++.h: Include <initializer_list> for completeness. + 2009-10-12 Paolo Carlini <paolo.carl...@oracle.com> * include/bits/random.h (class linear_congruential_engine, Index: MAINTAINERS =================================================================== --- MAINTAINERS (revision 152686) +++ MAINTAINERS (working copy) @@ -454,6 +454,7 @@ Johannes Singler sing...@ira.uka.de Franz Sirl franz.sirl-ker...@lauterbach.com Jan Sjodin jan.sjo...@amd.com +Edward Smith-Rowland 3dw...@verizon.net Michael Sokolov msoko...@ivan.harhan.org Richard Stallman r...@gnu.org Basile Starynkevitch bas...@starynkevitch.net Index: gcc/configure =================================================================== --- gcc/configure (revision 152686) +++ gcc/configure (working copy) @@ -22917,6 +22917,37 @@ fi + { $as_echo "$as_me:${as_lineno-$LINENO}: checking assembler for swap suffix" >&5 +$as_echo_n "checking assembler for swap suffix... " >&6; } +if test "${gcc_cv_as_ix86_swap+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + gcc_cv_as_ix86_swap=no + if test x$gcc_cv_as != x; then + echo 'movl.s %esp, %ebp' > conftest.s + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5 + (eval $ac_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; } + then + gcc_cv_as_ix86_swap=yes + else + echo "configure: failed program was" >&5 + cat conftest.s >&5 + fi + rm -f conftest.o conftest.s + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_as_ix86_swap" >&5 +$as_echo "$gcc_cv_as_ix86_swap" >&6; } +if test $gcc_cv_as_ix86_swap = yes; then + +$as_echo "#define HAVE_AS_IX86_SWAP 1" >>confdefs.h + +fi + { $as_echo "$as_me:${as_lineno-$LINENO}: checking assembler for different section symbol subtraction" >&5 $as_echo_n "checking assembler for different section symbol subtraction... " >&6; } if test "${gcc_cv_as_ix86_diff_sect_delta+set}" = set; then : Index: gcc/config.in =================================================================== --- gcc/config.in (revision 152686) +++ gcc/config.in (working copy) @@ -315,6 +315,12 @@ #endif +/* Define if your assembler supports the swap suffix. */ +#ifndef USED_FOR_TARGET +#undef HAVE_AS_IX86_SWAP +#endif + + /* Define if your assembler supports the lituse_jsrdirect relocation. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_JSRDIRECT_RELOCS