OSDN Git Service

pf3gnuchains/gcc-fork.git
18 years ago * tree-cfg.c (bsi_replace): Rename final argument from
law [Fri, 6 Jan 2006 17:50:26 +0000 (17:50 +0000)]
* tree-cfg.c (bsi_replace): Rename final argument from
PRESERVE_EH_INFO to UPDATE_EH_INFO.  Fix typo in last
change (stmt -> orig_stmt).
* tree-eh.c (verify_eh_throw_stmt_node): New function.
(bsi_remove): Add new argument.  Remove EH information
if requested.
(verify_eh_throw_table_statements): New function.
(bsi_remove): Add new argument REMOVE_EH_INFO.  All callers
updated.
* tree-optimize.c (execute_free_cfg_annotations): Verify
the EH throw statement table after removing annotations.
* except.h (verify_eh_throw_table_statements): Prototype.
* tree-flow.h (bsi_remove): Update prototype.
* tree-vrp.c (remove_range_assertions): Add new argument to
bsi_remove call.
* tree-ssa-loop-im.c (move_computations_stmt): Likewise.
* tree-complex.c (expand_complex_div_wide): Likewise.
* tree-ssa-threadupdate.c (remove_ctrl_stmt_and_useless_edges): Likewise
* tree-tailcall.c (eliminate_tailcall): Likewise.
* tree-ssa-dse.c (dse_optimize_stmt): Likewise.
* tree-ssa-loop-ivopts.c (remove_statement): Likewise.
* tree-nrv.c (tree_nrv): Likewise.
* tree-vectorizer.c (slpeel_make_loop_iterate_ntimes): Likewise.
* tree-if-conv.c (tree_if_convert_cond_expr): Likewise.
(combine_blocks): Likewise.
* tree-ssa-phiopt.c (replace_phi_edge_with_variable): Likewise.
* tree-cfgcleanup.c (cleanup_ctrl_expr_graph): Likewise.
(cleanup_control_flow): Likewise.
(remove_forwarder_block): Likewise.
* tree-ssa-pre.c (remove_dead_inserted_code): Likewise.
* tree-sra.c (sra_replace): Likewise.
* tree-ssa-forwprop.c (forward_propagate_into_cond): Likewise.
(forward_propagate_single_use_vars): Likewise.
* tree-ssa-dce.c (remove_dead_stmt): Likewise.
* tree-inline.c (expand_call_inline): Likewise.
* tree-vect-transform.c (vect_transform_loop): Likewise.
* tree-outof-ssa.c (rewrite_trees): Likewise.
* tree-cfg.c (make_goto_expr_edges): Likewise.
(cleanup_dead_labels): Likewise.
(tree_merge_blocks, remove_bb, disband_implicit_edges): Likewise.
(bsi_move_before, bsi_move_after): Likewise.
(bsi_move_to_bb_end, try_redirect_by_replacing_jump): Likewise
(tree_redirect_edge_and_branch, tree_split_block): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109421 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-06 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Fri, 6 Jan 2006 15:00:50 +0000 (15:00 +0000)]
2006-01-06  Andrew Pinski  <pinskia@physics.uc.edu>

        PR tree-opt/25528
        * tree-ssa-alias.c (find_used_portions): Handle REALPART_EXPR
        and IMAGPART_EXPR.
        * tree-flow-inline.h (var_can_have_subvars): Handle complex types
        on non gimple variables.  Also add checks at the top for decls and
        mtags.
        * tree-ssa-structalias.c (push_fields_onto_fieldstack): Handle
        complex types.
        * tree-ssa-operands.c (parse_ssa_operands): Handle REALPART_EXPR
        and IMAGPART_EXPR for creating MUST_DEFs.
        (get_expr_operands): Handle SSA_NAME, STRUCT_FIELD_TAG, TYPE_MEMORY_TAG,
        and NAME_MEMORY_TAG separately from the DECLs.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109419 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoFix previous ChangeLog entry
tobi [Fri, 6 Jan 2006 12:31:17 +0000 (12:31 +0000)]
Fix previous ChangeLog entry

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109417 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-06 Richard Guenther <rguenther@suse.de>
rguenth [Fri, 6 Jan 2006 12:27:14 +0000 (12:27 +0000)]
2006-01-06  Richard Guenther  <rguenther@suse.de>

* tree-dfa.c (mark_new_vars_to_rename): Create stmt
annotation, if necessary.
* tree-ssa-pre.c (create_expression_by_pieces): Remove
redundant calls to update_stmt.
* tree-ssa-forwprop.c (tidy_after_forward_propagate_addr):
Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109416 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-06 Paolo Carlini <pcarlini@suse.de>
paolo [Fri, 6 Jan 2006 11:23:02 +0000 (11:23 +0000)]
2006-01-06  Paolo Carlini  <pcarlini@suse.de>

* include/bits/stl_bvector.h (vector<bool>::erase(iterator,
iterator)): Just use _M_erase_at_end.

2006-01-06  Paolo Carlini  <pcarlini@suse.de>

* include/bits/stl_bvector.h (class vector<bool>): Move all the
helpers under protected access mode, consistently with the primary
vector template.
(vector<bool>::_M_erase_at_end): Add.
(erase(iterator, iterator), clear, resize, _M_fill_assign,
_M_assign_aux): Use it.
* testsuite/23_containers/vector/bool/modifiers/erase/1.cc: New.

2006-01-06  Paolo Carlini  <pcarlini@suse.de>

Implement Option 3 of DR 431 for vector<bool>.
* include/bits/stl_bvector.h (class _Bvector_base): Change to
a struct, consistently with the primary vector template.
(class vector<bool>): Adjust to protected inheritance, tidy
typedefs.
(_Bvector_base<>::_M_get_Bit_allocator): Add.
(vector<bool>::vector(const vector&)): Use it.
(_Bvector_base<>::get_allocator): Tidy.
(vector<bool>::swap): Use __alloc_swap.
* testsuite/23_containers/vector/bool/modifiers/swap/1.cc: New.
* testsuite/23_containers/vector/bool/modifiers/swap/2.cc: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109415 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-05 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Fri, 6 Jan 2006 05:21:01 +0000 (05:21 +0000)]
2006-01-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR libgfortran/25598
* io/file_pos.c (unformatted_backspace): Assure the new file position
to seek is not less than zero.
(st_backspace): Set unit bytes_left to zero.
* io/transfer.c (next_record_r): Fix line lengths, no functional change.

Fix date on ChangeLog

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109408 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-05 Paolo Carlini <pcarlini@suse.de>
paolo [Fri, 6 Jan 2006 02:11:55 +0000 (02:11 +0000)]
2006-01-05  Paolo Carlini  <pcarlini@suse.de>

* testsuite/testsuite_hooks.h (test_tm(unsigned)): Change to
take all the tm members.
* testsuite/testsuite_hooks.cc (test_tm): Adjust.
* testsuite/22_locale/time_put/put/wchar_t/10.cc: Update.
* testsuite/22_locale/time_put/put/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/2.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/3.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/4.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/5.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/6.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/7.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/8.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/9.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/17038.cc: Likewise.
* testsuite/22_locale/time_put/put/char/10.cc: Likewise.
* testsuite/22_locale/time_put/put/char/1.cc: Likewise.
* testsuite/22_locale/time_put/put/char/2.cc: Likewise.
* testsuite/22_locale/time_put/put/char/3.cc: Likewise.
* testsuite/22_locale/time_put/put/char/4.cc: Likewise.
* testsuite/22_locale/time_put/put/char/5.cc: Likewise.
* testsuite/22_locale/time_put/put/char/6.cc: Likewise.
* testsuite/22_locale/time_put/put/char/7.cc: Likewise.
* testsuite/22_locale/time_put/put/char/8.cc: Likewise.
* testsuite/22_locale/time_put/put/char/9.cc: Likewise.
* testsuite/22_locale/time_put/put/char/17038.cc: Likewise.
* testsuite/22_locale/time_get/get_year/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_get/get_year/wchar_t/3.cc: Likewise.
* testsuite/22_locale/time_get/get_year/char/1.cc: Likewise.
* testsuite/22_locale/time_get/get_year/char/3.cc: Likewise.
* testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_get/get_monthname/wchar_t/2.cc: Likewise.
* testsuite/22_locale/time_get/get_monthname/char/1.cc: Likewise.
  * testsuite/22_locale/time_get/get_monthname/char/2.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/wchar_t/2.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/wchar_t/3.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/char/1.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/char/2.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/char/3.cc: Likewise.
* testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
* testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
* testsuite/22_locale/time_get/get_date/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_get/get_date/wchar_t/2.cc: Likewise.
* testsuite/22_locale/time_get/get_date/wchar_t/3.cc: Likewise.
  * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
* testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
* testsuite/22_locale/time_get/get_date/char/1.cc: Likewise.
* testsuite/22_locale/time_get/get_date/char/2.cc: Likewise.
* testsuite/22_locale/time_get/get_date/char/3.cc: Likewise.
* testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_get/get_time/wchar_t/2.cc: Likewise.
* testsuite/22_locale/time_get/get_time/wchar_t/3.cc: Likewise.
* testsuite/22_locale/time_get/get_time/wchar_t/4.cc: Likewise.
* testsuite/22_locale/time_get/get_time/char/1.cc: Likewise.
* testsuite/22_locale/time_get/get_time/char/2.cc: Likewise.
* testsuite/22_locale/time_get/get_time/char/3.cc: Likewise.
* testsuite/22_locale/time_get/get_time/char/4.cc: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109407 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2005-01-05 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Fri, 6 Jan 2006 01:44:31 +0000 (01:44 +0000)]
2005-01-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR fortran/25598
* gfortran.dg/backspace_3.f: New test.
* gfortran.dg/backspace_4.f: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109406 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-05 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Fri, 6 Jan 2006 01:39:34 +0000 (01:39 +0000)]
2006-01-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR libgfortran/25598
* io/file_pos.c (unformatted_backspace): Assure the new file position
to seek is not less than zero.
(st_backspace): Set unit bytes_left to zero.
* io/transfer.c (next_record_r): Fix line lengths, no functional change.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109405 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2005-01-05 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Fri, 6 Jan 2006 01:28:40 +0000 (01:28 +0000)]
2005-01-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR fortran/24268
* gfortran.dg/fmt_white.f: Update test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109404 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago Fix date on log entry.
jvdelisle [Fri, 6 Jan 2006 01:25:15 +0000 (01:25 +0000)]
Fix date on log entry.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109403 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-01 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Fri, 6 Jan 2006 01:21:56 +0000 (01:21 +0000)]
2006-01-01  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR fortran/24268
* io.c (next_char_not_space): New function that returns the next
character that is not white space.
(format_lex): Use the new function to skip whitespace within
a format string.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109402 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * java/lang/natThread.cc (finish_): Don't clear 'group'.
tromey [Fri, 6 Jan 2006 01:03:45 +0000 (01:03 +0000)]
* java/lang/natThread.cc (finish_): Don't clear 'group'.
* sources.am, Makefile.in: Rebuilt.
* java/lang/Runtime.java (exit): Merged with Classpath.
(runShutdownHooks): New method from Classpath.
* java/io/File.java (deleteOnExit): Use DeleteFileHelper, not
FileDeleter.
* gnu/gcj/runtime/FileDeleter.java: Removed.
* java/lang/natRuntime.cc (runFinalizationForExit): New method.
(exitInternal): Don't run finalizers or delete files.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109400 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoDaily bump.
gccadmin [Fri, 6 Jan 2006 00:17:20 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109397 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-05 Paolo Carlini <pcarlini@suse.de>
paolo [Fri, 6 Jan 2006 00:12:00 +0000 (00:12 +0000)]
2006-01-05  Paolo Carlini  <pcarlini@suse.de>

        * testsuite/testsuite_hooks.h: Adjust Copyright dates.
        * testsuite/testsuite_hooks.cc: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109391 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-05 Paolo Carlini <pcarlini@suse.de>
paolo [Fri, 6 Jan 2006 00:06:52 +0000 (00:06 +0000)]
2006-01-05  Paolo Carlini  <pcarlini@suse.de>

* testsuite/testsuite_hooks.h (test_tm(unsigned)): New.
* testsuite/testsuite_hooks.cc (test_tm(unsigned)): Define.
* testsuite/22_locale/time_put/put/wchar_t/10.cc: Use it.
* testsuite/22_locale/time_put/put/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/2.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/3.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/4.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/5.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/6.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/7.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/8.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/9.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/17038.cc: Likewise.
* testsuite/22_locale/time_put/put/char/10.cc: Likewise.
* testsuite/22_locale/time_put/put/char/1.cc: Likewise.
* testsuite/22_locale/time_put/put/char/2.cc: Likewise.
* testsuite/22_locale/time_put/put/char/3.cc: Likewise.
* testsuite/22_locale/time_put/put/char/4.cc: Likewise.
* testsuite/22_locale/time_put/put/char/5.cc: Likewise.
* testsuite/22_locale/time_put/put/char/6.cc: Likewise.
* testsuite/22_locale/time_put/put/char/7.cc: Likewise.
* testsuite/22_locale/time_put/put/char/8.cc: Likewise.
* testsuite/22_locale/time_put/put/char/9.cc: Likewise.
* testsuite/22_locale/time_put/put/char/17038.cc: Likewise.
* testsuite/22_locale/time_get/get_year/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_get/get_year/wchar_t/3.cc: Likewise.
* testsuite/22_locale/time_get/get_year/char/1.cc: Likewise.
* testsuite/22_locale/time_get/get_year/char/3.cc: Likewise.
* testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_get/get_monthname/wchar_t/2.cc: Likewise.
* testsuite/22_locale/time_get/get_monthname/char/1.cc: Likewise.
  * testsuite/22_locale/time_get/get_monthname/char/2.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/wchar_t/2.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/wchar_t/3.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/char/1.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/char/2.cc: Likewise.
* testsuite/22_locale/time_get/get_weekday/char/3.cc: Likewise.
* testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
* testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
* testsuite/22_locale/time_get/get_date/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_get/get_date/wchar_t/2.cc: Likewise.
* testsuite/22_locale/time_get/get_date/wchar_t/3.cc: Likewise.
  * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
* testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
* testsuite/22_locale/time_get/get_date/char/1.cc: Likewise.
* testsuite/22_locale/time_get/get_date/char/2.cc: Likewise.
* testsuite/22_locale/time_get/get_date/char/3.cc: Likewise.
* testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_get/get_time/wchar_t/2.cc: Likewise.
* testsuite/22_locale/time_get/get_time/wchar_t/3.cc: Likewise.
* testsuite/22_locale/time_get/get_time/wchar_t/4.cc: Likewise.
* testsuite/22_locale/time_get/get_time/char/1.cc: Likewise.
* testsuite/22_locale/time_get/get_time/char/2.cc: Likewise.
* testsuite/22_locale/time_get/get_time/char/3.cc: Likewise.
* testsuite/22_locale/time_get/get_time/char/4.cc: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109390 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * c-parser.c (c_parser_objc_methodprotolist): Handle CPP_PRAGMA.
rth [Thu, 5 Jan 2006 21:06:47 +0000 (21:06 +0000)]
    * c-parser.c (c_parser_objc_methodprotolist): Handle CPP_PRAGMA.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109388 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agogcc/
carlos [Thu, 5 Jan 2006 19:39:22 +0000 (19:39 +0000)]
gcc/

2006-01-05  Carlos O'Donell  <carlos@codesourcery.com>

* c-typeck.c: Update copyright date.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109387 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agogcc/
carlos [Thu, 5 Jan 2006 19:07:16 +0000 (19:07 +0000)]
gcc/

2006-01-05  Carlos O'Donell  <carlos@codesourcery.com>

* c-typeck.c (build_c_cast): Always warn when casting
from a pointer to an integer of different size, even if
the node was constant.

gcc/testsuite

2006-01-05  Carlos O'Donell  <carlos@codesourcery.com>

* gcc.dg/cast-1.c: Add new warning.
* gcc.dg/cast-2.c: Likewise.
* gcc.dg/cast-3.c: Likewise.
* gcc.dg/format/cast-1.c: Likewise.
* gcc.dg/cast-4.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109386 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago* Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
aoliva [Thu, 5 Jan 2006 17:42:53 +0000 (17:42 +0000)]
* Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
@ from continuation.
* Makefile.in: Rebuilt.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109385 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * java/lang/natPosixProcess.cc (reap): Ignore unknown children.
tromey [Thu, 5 Jan 2006 17:35:20 +0000 (17:35 +0000)]
* java/lang/natPosixProcess.cc (reap): Ignore unknown children.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109383 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-05 Richard Guenther <rguenther@suse.de>
rguenth [Thu, 5 Jan 2006 15:30:44 +0000 (15:30 +0000)]
2006-01-05  Richard Guenther  <rguenther@suse.de>

PR tree-optimization/22555
* tree-ssa-alias.c (create_overlap_variables_for): Do not give up,
if one structure field is an array.
* tree-ssa-operands.c (get_expr_operands): Continue scanning
operands even if we found a subvar, but ignore VOPs in this
case.
* tree-ssa-loop-ivopts.c (rewrite_use): Mark new vars in stmt
for renaming.
* tree-ssa-loop.c (pass_iv_optimize): Schedule TODO_update_ssa.

* gcc.dg/tree-ssa/alias-3.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109381 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago PR middle-end/24998
rearnsha [Thu, 5 Jan 2006 15:06:09 +0000 (15:06 +0000)]
PR middle-end/24998
* arm/t-netbsd (LIB2FUNCS_EXTRA): Define.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109380 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-05 Richard Guenther <rguenther@suse.de>
rguenth [Thu, 5 Jan 2006 13:53:54 +0000 (13:53 +0000)]
2006-01-05  Richard Guenther  <rguenther@suse.de>
    Diego Novillo  <dnovillo@redhat.com>

* tree-pass.h (TODO_remove_unused_locals): Define.
* gimple-low.c (expand_var_p, remove_useless_vars,
pass_remove_useless_vars): Remove.  Update all users.
* tree-ssa-live.c (mark_all_vars_used_1): Handle SSA names.
(remove_unused_locals): New function.
* tree-flow.h (remove_unused_locals): Declare.
* passes.c (execute_todo): Call remove_unused_locals if
TODO_remove_unused_locals is set.
* tree-into-ssa.c (pass_build_ssa): Add TODO_remove_unused_locals.
* tree-ssa-dce.c (pass_dce): Likewise.
* tree-outof-ssa.c (pass_del_ssa): Likewise.

* gcc.dg/tree-ssa/loop-11.c: Deal with removed vars pass.
* gcc.dg/tree-ssa/loop-8.c: Likewise.
* gcc.dg/tree-ssa/loop-1.c: Likewise.
* gcc.dg/tree-ssa/pr23294.c: Likewise.
* gcc.dg/tree-ssa/pr21985.c: Likewise.
* gcc.dg/tree-ssa/loop-14.c: Likewise.
* gcc.dg/tree-ssa/loop-2.c: Likewise.
* gcc.dg/tree-ssa/loop-3.c: Likewise.
* gcc.dg/tree-ssa/loop-4.c: Likewise.
* gcc.dg/tree-ssa/pr21171.c: Likewise.
* gcc.dg/tree-ssa/loop-5.c: Likewise.
* gcc.dg/tree-ssa/loop-10.c: Likewise.
* gcc.dg/tree-ssa/loop-6.c: Likewise.
* treelang/compile/extravar.tree: Likewise.
* g++.dg/tree-ssa/ssa-cast-1.C: Likewise.
* g++.dg/tree-ssa/pointer-reference-alias.C: Likewise.
* g++.dg/tree-ssa/ssa-sra-1.C: Likewise.
* g++.dg/tree-ssa/ssa-sra-2.C: Likewise.
* gcc.dg/tree-ssa/20031106-6.c: Disable SRA.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109379 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-05 Bernhard Fischer <rep.nop@aon.at>
aldot [Thu, 5 Jan 2006 12:47:33 +0000 (12:47 +0000)]
2006-01-05  Bernhard Fischer  <rep.nop@aon.at>

* MAINTAINERS (Write after approval): Add myself.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109377 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-05 Richard Guenther <rguenther@suse.de>
rguenth [Thu, 5 Jan 2006 09:58:57 +0000 (09:58 +0000)]
2006-01-05  Richard Guenther  <rguenther@suse.de>

* tree-flow.h (struct fieldoff): Decompose field to
type, size and decl.
* tree-ssa-alias.c (create_sft): Take type as parameter.
(create_overlap_variables_for): Store type, size and decl
in the fieldoff structure.
* tree-ssa-structalias.c (fieldoff_compare): Adjust users
of struct fieldoff.
(push_fields_onto_fieldstack): Likewise.
(create_variable_info_for): Likewise.  Use offset for the
SFT name if the decl is not available.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109376 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-02-05 Paolo Bonzini <bonzini@gnu.org>
bonzini [Thu, 5 Jan 2006 08:35:23 +0000 (08:35 +0000)]
2006-02-05  Paolo Bonzini  <bonzini@gnu.org>

* Makefile.in: Use -MMD instead of -MD.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109373 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * g++.dg/abi/thunk3.C, g++.dg/abi/thunk4.C: Revert unnecessary fix
hp [Thu, 5 Jan 2006 01:53:44 +0000 (01:53 +0000)]
* g++.dg/abi/thunk3.C, g++.dg/abi/thunk4.C: Revert unnecessary fix
for 64-bit fix.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109371 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agofixed missing changelog entry for r109153
zadeck [Thu, 5 Jan 2006 00:53:41 +0000 (00:53 +0000)]
fixed missing changelog entry for r109153

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109370 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-05 Erik Edelmann <eedelman@gcc.gnu.org>
eedelman [Thu, 5 Jan 2006 00:22:39 +0000 (00:22 +0000)]
2006-01-05  Erik Edelmann  <eedelman@gcc.gnu.org>

        PR fortran/23675
        * expr.c (gfc_expr_set_symbols_referenced): New function.
        * gfortran.h: Add a function prototype for it.
        * resolve.c (resolve_function): Use it for
        use associated character functions lengths.
        * expr.c, gfortran.h, resolve.c: Updated copyright years.

testsuite/
2006-01-05  Erik Edelmann  <eedelman@gcc.gnu.org>

        PR fortran/23675
        gfortran.dg/char_result_11.f90: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109368 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoDaily bump.
gccadmin [Thu, 5 Jan 2006 00:18:02 +0000 (00:18 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109365 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago PR c++/25632
rakdver [Wed, 4 Jan 2006 22:46:09 +0000 (22:46 +0000)]
PR c++/25632
* init.c (constant_value_1): Unshare use of DECL_INITIAL.  Fix a typo
in condition.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109354 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * decNumber.c (__NO_STRING_INLINES): Define to prevent glibc macro
sayle [Wed, 4 Jan 2006 21:22:34 +0000 (21:22 +0000)]
* decNumber.c (__NO_STRING_INLINES): Define to prevent glibc macro
definition of strcpy from generating compilation warnings.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109351 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-04 Krister Walfridsson <cato@df.lth.se>
kristerw [Wed, 4 Jan 2006 21:11:51 +0000 (21:11 +0000)]
2006-01-04  Krister Walfridsson  <cato@df.lth.se>

* posix-threads.cc (_Jv_InitThreads): #ifdef PTHREAD_STACK_MIN

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109350 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-04 Chris Lattner <sabre@gnu.org>
sabre [Wed, 4 Jan 2006 19:59:44 +0000 (19:59 +0000)]
2006-01-04  Chris Lattner  <sabre@gnu.org>

        * typeck2.c: update copyright to 2006
        (split_nonconstant_init_1):  Set TREE_CONSTANT to true.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109348 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoanother trivial tweak for consistency
sabre [Wed, 4 Jan 2006 19:57:06 +0000 (19:57 +0000)]
another trivial tweak for consistency

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109347 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoobvious typo fix
sabre [Wed, 4 Jan 2006 19:49:59 +0000 (19:49 +0000)]
obvious typo fix

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109346 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoAdd myself.
sabre [Wed, 4 Jan 2006 19:47:45 +0000 (19:47 +0000)]
Add myself.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109345 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago PR c++/24782
mmitchel [Wed, 4 Jan 2006 18:48:38 +0000 (18:48 +0000)]
PR c++/24782
* parser.c (cp_parser_nested_name_specifier_opt): Preserve access
checks, even when parsing tentatively.
PR c++/24782
* g++.dg/parse/access9.C: New test.
* g++.dg/tc1/dr52.C: Tweak error markers.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109342 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * java/lang/Class.h (_Jv_CopyClassesToSystemLoader): Updated.
tromey [Wed, 4 Jan 2006 17:59:40 +0000 (17:59 +0000)]
* java/lang/Class.h (_Jv_CopyClassesToSystemLoader): Updated.
* java/lang/natClassLoader.cc (_Jv_CopyClassesToSystemLoader):
Changed argument type.  Use SystemClassLoader.addClass.
* gnu/gcj/runtime/SystemClassLoader.java (addClass): New method.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109340 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-04 Paul Brook <paul@codesourcery.com>
pbrook [Wed, 4 Jan 2006 16:38:00 +0000 (16:38 +0000)]
2006-01-04  Paul Brook  <paul@codesourcery.com>

* config/m68k/m68k.c (m68k_output_mi_thunk): Use jmp, not jsr.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109338 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-04 Daniel Berlin <dberlin@dberlin.org>
dberlin [Wed, 4 Jan 2006 16:34:52 +0000 (16:34 +0000)]
2006-01-04  Daniel Berlin  <dberlin@dberlin.org>

* lambda-code.c (can_put_in_inner_loop): Relax
restrictions.
(can_put_after_inner_loop): New function.
(can_convert_to_perfect_nest): Use can_put_after_inner_loop as well.
(perfect_nestify): Change to make copies and modify uses.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109337 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agolibcpp/
rth [Wed, 4 Jan 2006 16:33:38 +0000 (16:33 +0000)]
libcpp/
* directives.c (struct pragma_entry): Add is_deferred.  Add ident
entry to value union.
(end_directive): Don't eat the line if in_deferred_pragma.
(run_directive): Remove pragma hacks.
(insert_pragma_entry): Remove.
(new_pragma_entry): New.
(register_pragma_1): Split out of register_pragma.  Only handle
the lookup tree and return the new entry.
(cpp_register_pragma): Fill in the pragma entry here.
(cpp_register_deferred_pragma): New.
(register_pragma_internal): New.
(_cpp_init_internal_pragmas): Use register_pragma_internal.
(do_pragma): Allow pragma expansion after namespace.  For deferred
pragmas, don't slurp the line into a string.
(destringize_and_run): Save tokens for deferred pragmas.
(cpp_handle_deferred_pragma): Remove.
* macro.c (builtin_macro): Remove pragma token hack.
(_cpp_push_token_context): Rename from push_token_context and export.
* internal.h (struct lexer_state): Add pragma_allow_expansion.
(_cpp_push_token_context): Declare.
* lex.c (_cpp_lex_token): Allow _cpp_handle_directive to return
a token.  Update the line number correctly if so.
(_cpp_lex_direct): Emit CPP_PRAGMA_EOL tokens.
(cpp_token_val_index): Return CPP_TOKEN_FLD_PRAGMA for pragmas.
* include/cpplib.h (PRAGMA_EOL): New.
(CPP_TOKEN_FLD_PRAGMA): New.
(struct cpp_token): Add val.pragma.
(struct cpp_options): Remove defer_pragmas.
(cpp_handle_deferred_pragma): Remove.
(cpp_register_deferred_pragma): Declare.

gcc/
* c-lex.c (c_lex_with_flags) <CPP_PRAGMA>: Smuggle pragma id
via integer constant.
(pragma_lex): Remove.
* c-pch.c (c_common_pch_pragma): Accept the name as an argument,
rather than parsing it.
* c-pragma.c (handle_pragma_weak, handle_pragma_redefine_extname,
handle_pragma_extern_prefix): Add %< %> quotes.
(registered_pragmas): New.
(c_register_pragma_1): New.
(c_register_pragma): Use it.
(c_register_pragma_with_expansion): Likewise.
(c_invoke_pragma_handler): New.
(init_pragma): Use cpp_register_deferred_pragma directly for
pch_preprocess.
* c-pragma.h (enum pragma_kind): New.
(pragma_handler): New.
(c_invoke_pragma_handler): Declare.
* c-common.c (c_parse_error): Pretty print CPP_PRAGMA and
CPP_PRAGMA_EOL.
* c-common.h (c_common_pch_pragma): Update decl.
* Makefile.in (c-parser.o): Update dependencies.
(GTFILES): Add c-pragma.h.
* c-parser.c (struct c_token): Add pragma_kind.
(struct c_parser): Add in_pragma.
(c_lex_one_token): Always initialize keyword and pragma_kind.
Extract data for CPP_PRAGMA.
(c_parser_peek_2nd_token): Deny CPP_PRAGMA_EOL.
(c_parser_consume_token): Don't allow CPP_PRAGMA unless errors.
Don't allow CPP_PRAGMA_EOL if in_pragma.
(c_parser_consume_pragma): New.
(c_parser_skip_until_found): Stop on CPP_PRAGMA_EOL.
(c_parser_skip_to_end_of_parameter): Likewise.
(c_parser_skip_to_end_of_block_or_statement): Likewise.
(c_parser_skip_to_pragma_eol): New.
(c_parser_external_declaration): Handle CPP_PRAGMA.
(c_parser_compound_statement_nostart): Likewise.
(c_parser_statement_after_labels): Likewise.
(c_parser_pragma): New.
(pragma_lex): Likewise.
(c_parser_pragma_pch_preprocess): New.
(c_parser_new): Merge into ...
(c_parse_file): ... here.  Call c_parser_pragma_pch_preprocess.

gcc/cp/
* lex.c (handle_pragma_java_exceptions): Fix whitespace.
* parser.c (struct cp_token): Add pragma_kind.
(eof_token): Update to match.
(struct cp_lexer): Add in_pragma; rearrange next for better packing.
(cp_parser_initial_pragma): New.
(cp_lexer_new_main): Use it.  Don't bother clearing
c_lex_return_raw_strings.
(cp_lexer_get_preprocessor_token): Always initialize keyword
and pragma_kind fields.  Handle CPP_PRAGMA.
(cp_lexer_consume_token): Don't allow CPP_PRAGMA_EOL when
in_pragma is set.
(cp_lexer_handle_pragma): Remove.  Update callers to cp_parser_pragma.
(cp_lexer_print_token) <CPP_PRAGMA>: Don't print as a string.
(cp_parser_skip_to_pragma_eol): New.
(cp_parser_error): Use it.
(cp_parser_skip_to_closing_parenthesis): Stop at CPP_PRAGMA_EOL;
rearrange with switch statement.
(cp_parser_skip_to_end_of_statement): Likewise.
(cp_parser_skip_to_end_of_block_or_statement): Likewise.
(cp_parser_skip_to_closing_brace): Likewise.
(cp_parser_skip_until_found): Likewise.
(cp_parser_statement): Add in_compound argument; update callers.
Use it to decide how to handle pragma parsing.
(cp_parser_labeled_statement): Add in_compound argument; pass
it on to cp_parser_statement.
(cp_parser_statement_seq_opt): Stop at CPP_PRAGMA_EOL.
(cp_parser_declaration_seq_opt): Likewise.
(cp_parser_parameter_declaration): Likewise.
(cp_parser_member_specification_opt): Likewise.
(cp_parser_function_definition_after_decl): Likewise.
(cp_parser_cache_group): Handle CPP_PRAGMA/CPP_PRAGMA_EOL pairs.
(cp_parser_pragma): New.
(pragma_lex): New.

gcc/testsuite/
* g++.dg/parse/pragma2.C: Update expected error lines.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109336 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago PR ada/24994
law [Wed, 4 Jan 2006 16:29:32 +0000 (16:29 +0000)]
    PR ada/24994
        * tree-cfg.c (bsi_replace): Remove the original statement
        from the EH throw statement table.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109335 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2002-01-04 Dirk Mueller <dmueller@suse.com>
rguenth [Wed, 4 Jan 2006 15:26:15 +0000 (15:26 +0000)]
2002-01-04  Dirk Mueller <dmueller@suse.com>

* decl.c (finish_constructor_body): create simple
compound stmt instead of a if(1) { } construct.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109331 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoFix "node B dominates node B" to "node B dominates node A"
dberlin [Wed, 4 Jan 2006 15:07:54 +0000 (15:07 +0000)]
Fix "node B dominates node B" to "node B dominates node A"

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109330 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-04 Paolo Bonzini <bonzini@gnu.org>
bonzini [Wed, 4 Jan 2006 12:21:27 +0000 (12:21 +0000)]
2006-01-04  Paolo Bonzini  <bonzini@gnu.org>

PR bootstrap/24252

* Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
* Makefile.tpl (OBJDUMP): New.
(EXTRA_HOST_FLAGS): Add it.
(EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.

        * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
        to use symbolic links between directories.  Avoid race conditions
        or make them harmless.
        * configure.in: Do not try to use symbolic links between directories.

* Makefile.def (LEAN): Pass.
* Makefile.tpl (LEAN): Define.
(stage[+id+]-start): Accept that the previous directory does not
exist, if the bootstrap is lean.
(stage[+id+]-bubble): Invoke lean bootstrap commands after
stage[+id+]-start.  Use a makefile variable and an `if' instead of a
configure substitution.
([+compare-target+]): Likewise.
([+bootstrap-target+]-lean): New.
* configure.in: Remove lean bootstrap support from here.

        * Makefile.in: Regenerate.
        * configure: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109325 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-04 Paolo Carlini <pcarlini@suse.de>
paolo [Wed, 4 Jan 2006 11:34:45 +0000 (11:34 +0000)]
2006-01-04  Paolo Carlini  <pcarlini@suse.de>

        * include/ext/sso_string_base.h (__sso_string_base<>::_M_dataplus):
        Use _CharT_alloc_type as base class.
        (_M_get_allocator, _M_swap, _M_create, _M_destroy): Adjust.
        * include/ext/vstring.h (get_allocator): Tidy.

2006-01-04  Paolo Carlini  <pcarlini@suse.de>

Implement Option 3 of DR 431 for all the containers.
* include/bits/allocator.h (struct __alloc_swap): Add, swaps
allocators, optimized to nothing in case they are empty.
* include/bits/stl_deque.h (deque<>::swap): Use it.
* include/bits/stl_list.h (list<>::swap): Likewise.
* include/bits/stl_tree.h (_Rb_tree<>::swap): Likewise.
* include/bits/stl_vector.h (vector<>::swap): Likewise.
* include/tr1/hashtable (hashtable<>::swap): Likewise.
* include/ext/rc_string_base.h (__rc_string_base<>::_M_swap):
Likewise.
* include/ext/sso_string_base.h (__sso_string_base<>::_M_swap):
Likewise.
* include/ext/vstring_util.h (__vstring_utility<>::_Alloc_hider):
Clean-up (now vstring uses the generic __alloc_swap facility).
* include/tr1/unordered_map: Adjust includes.
* include/tr1/unordered_set: Likewise.
* docs/html/ext/howto.html: Add an entry for DR 431.
* testsuite/23_containers/deque/modifiers/swap.cc: Move to...
* testsuite/23_containers/deque/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/deque/modifiers/swap/2.cc: New.
* testsuite/23_containers/deque/modifiers/swap/3.cc: New.
* testsuite/23_containers/list/modifiers/swap.cc: Move to...
* testsuite/23_containers/list/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/list/modifiers/swap/2.cc: New.
* testsuite/23_containers/list/modifiers/swap/3.cc: New.
* testsuite/23_containers/vector/modifiers/swap.cc: Move to...
* testsuite/23_containers/vector/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/vector/modifiers/swap/2.cc: New.
* testsuite/23_containers/vector/modifiers/swap/3.cc: New.
* testsuite/23_containers/set/modifiers/swap.cc: Move to...
* testsuite/23_containers/set/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/set/modifiers/swap/2.cc: New.
* testsuite/23_containers/set/modifiers/swap/3.cc: New.
* testsuite/23_containers/map/modifiers/swap.cc: Move to...
* testsuite/23_containers/map/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/map/modifiers/swap/2.cc: New.
* testsuite/23_containers/map/modifiers/swap/3.cc: New.
* testsuite/23_containers/multiset/modifiers/swap.cc: Move to...
* testsuite/23_containers/multiset/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/multiset/modifiers/swap/2.cc: New.
* testsuite/23_containers/multiset/modifiers/swap/3.cc: New.
* testsuite/23_containers/multimap/modifiers/swap.cc: Move to...
* testsuite/23_containers/multimap/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/multimap/modifiers/swap/2.cc: New.
* testsuite/23_containers/multimap/modifiers/swap/3.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_set/1.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_set/2.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_map/1.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_map/2.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_multiset/1.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_multiset/2.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_multimap/1.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_multimap/2.cc: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109324 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-04 Paolo Carlini <pcarlini@suse.de>
paolo [Wed, 4 Jan 2006 11:34:24 +0000 (11:34 +0000)]
2006-01-04  Paolo Carlini  <pcarlini@suse.de>

        * include/ext/sso_string_base.h (__sso_string_base<>::_M_dataplus):
        Use _CharT_alloc_type as base class.
        (_M_get_allocator, _M_swap, _M_create, _M_destroy): Adjust.
        * include/ext/vstring.h (get_allocator): Tidy.

2006-01-04  Paolo Carlini  <pcarlini@suse.de>

Implement Option 3 of DR 431 for all the containers.
* include/bits/allocator.h (struct __alloc_swap): Add, swaps
allocators, optimized to nothing in case they are empty.
* include/bits/stl_deque.h (deque<>::swap): Use it.
* include/bits/stl_list.h (list<>::swap): Likewise.
* include/bits/stl_tree.h (_Rb_tree<>::swap): Likewise.
* include/bits/stl_vector.h (vector<>::swap): Likewise.
* include/tr1/hashtable (hashtable<>::swap): Likewise.
* include/ext/rc_string_base.h (__rc_string_base<>::_M_swap):
Likewise.
* include/ext/sso_string_base.h (__sso_string_base<>::_M_swap):
Likewise.
* include/ext/vstring_util.h (__vstring_utility<>::_Alloc_hider):
Clean-up (now vstring uses the generic __alloc_swap facility).
* include/tr1/unordered_map: Adjust includes.
* include/tr1/unordered_set: Likewise.
* docs/html/ext/howto.html: Add an entry for DR 431.
* testsuite/23_containers/deque/modifiers/swap.cc: Move to...
* testsuite/23_containers/deque/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/deque/modifiers/swap/2.cc: New.
* testsuite/23_containers/deque/modifiers/swap/3.cc: New.
* testsuite/23_containers/list/modifiers/swap.cc: Move to...
* testsuite/23_containers/list/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/list/modifiers/swap/2.cc: New.
* testsuite/23_containers/list/modifiers/swap/3.cc: New.
* testsuite/23_containers/vector/modifiers/swap.cc: Move to...
* testsuite/23_containers/vector/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/vector/modifiers/swap/2.cc: New.
* testsuite/23_containers/vector/modifiers/swap/3.cc: New.
* testsuite/23_containers/set/modifiers/swap.cc: Move to...
* testsuite/23_containers/set/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/set/modifiers/swap/2.cc: New.
* testsuite/23_containers/set/modifiers/swap/3.cc: New.
* testsuite/23_containers/map/modifiers/swap.cc: Move to...
* testsuite/23_containers/map/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/map/modifiers/swap/2.cc: New.
* testsuite/23_containers/map/modifiers/swap/3.cc: New.
* testsuite/23_containers/multiset/modifiers/swap.cc: Move to...
* testsuite/23_containers/multiset/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/multiset/modifiers/swap/2.cc: New.
* testsuite/23_containers/multiset/modifiers/swap/3.cc: New.
* testsuite/23_containers/multimap/modifiers/swap.cc: Move to...
* testsuite/23_containers/multimap/modifiers/swap/1.cc: ... here.
* testsuite/23_containers/multimap/modifiers/swap/2.cc: New.
* testsuite/23_containers/multimap/modifiers/swap/3.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_set/1.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_set/2.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_map/1.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_map/2.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_multiset/1.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_multiset/2.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_multimap/1.cc: New.
* testsuite/tr1/6_containers/unordered/swap/unordered_multimap/2.cc: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109323 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * config/i386/pmm_malloc.h (posix_memalign): If __cplusplus,
jakub [Wed, 4 Jan 2006 08:17:15 +0000 (08:17 +0000)]
* config/i386/pmm_malloc.h (posix_memalign): If __cplusplus,
make the prototype extern "C" and add throw ().

* g++.dg/other/i386-2.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109318 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago PR target/25554
jakub [Wed, 4 Jan 2006 08:15:06 +0000 (08:15 +0000)]
PR target/25554
* config/i386/i386.md (testqi_ext_3): Ensure len is positive
and pos non-negative and pos + len <= 32.
(testqi_ext_3_rex64): Ensure len is positive and pos non-negative,
drop pos + len < HOST_BITS_PER_WIDE_INT test.
(testqi_ext_3* splitter): Handle pos + len == HOST_BITS_PER_WIDE_INT.

* gcc.c-torture/compile/20051228-1.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109317 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago PR c/25559
jakub [Wed, 4 Jan 2006 08:07:09 +0000 (08:07 +0000)]
PR c/25559
* c-common.c (handle_vector_size_attribute): Reject zero vector size
as well as sizes not multiple of component size.

* gcc.dg/pr25559.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109316 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago PR debug/25562
jakub [Wed, 4 Jan 2006 08:05:29 +0000 (08:05 +0000)]
PR debug/25562
* function.c (instantiate_expr): New function.
(instantiate_decls_1, instantiate_decls): If DECL_HAS_VALUE_EXPR_P,
walk its DECL_VALUE_EXPR with instantiate_expr.

* dwarf2out.c (loc_descriptor_from_tree_1): Don't add
DW_OP_deref{,_size} if address isn't going to be added.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109315 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * config/fp-bit.h: Use top-of-file comment from libgcc2.c.
bje [Wed, 4 Jan 2006 03:42:02 +0000 (03:42 +0000)]
* config/fp-bit.h: Use top-of-file comment from libgcc2.c.
* config/fp-bit.c: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109309 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-03 Daniel Berlin <dberlin@dberlin.org>
dberlin [Wed, 4 Jan 2006 02:03:19 +0000 (02:03 +0000)]
2006-01-03  Daniel Berlin  <dberlin@dberlin.org>

* dominance.c: Add comment about why we use DFS numbering
of dominance tree.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109308 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago PR c++/25492
mmitchel [Wed, 4 Jan 2006 01:04:51 +0000 (01:04 +0000)]
PR c++/25492
* name-lookup.c (push_class_level_binding): When a derived class
provides a type binding, eliminate any type binding from a base
class.
PR c++/25625
* repo.c (repo_emit_p): Always instantiate static data members
initialized by constant expressions, so that there values are
available.
PR c++/25492
* g++.dg/lookup/friend9.C: New test.
PR c++/25625
* g++.dg/template/repo5.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109307 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoDaily bump.
gccadmin [Wed, 4 Jan 2006 00:17:23 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109301 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago PR libgcj/9715, PR libgcj/19132:
tromey [Tue, 3 Jan 2006 22:58:31 +0000 (22:58 +0000)]
PR libgcj/9715, PR libgcj/19132:
* java/nio/charset/Charset.java (charsetForName): Try default
provider first.
(availableCharsets): Re-merged.
(providers2): Likewise.
(defaultCharset): Likewise.
* sources.am, Makefile.in: Rebuilt.
* gnu/java/nio/charset/Provider.java: Removed.
* java/io/OutputStreamWriter.java
(OutputStreamWriter(OutputStream,Charset)): New constructor.
(OutputStreamWriter(OutputStream,CharsetEncoder)): Likewise.
* java/io/InputStreamReader.java
(InputStreamReader(InputStream,CharsetDecoder)): New constructor.
(InputStreamReader(InputStream,Charset)): Likewise.
* gnu/gcj/convert/BytesToUnicode.java (getDecoder): Try a
BytesToCharsetAdaptor.
* gnu/gcj/convert/UnicodeToBytes.java (getEncoder): Try a
CharsetToBytesAdaptor.
* gnu/gcj/convert/CharsetToBytesAdaptor.java: New file.
* gnu/gcj/convert/BytesToCharsetAdaptor.java: New file.
* mauve-libgcj: Remove getEncoding exclusion.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109294 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * MAINTAINERS (libdecnumber): Add myself.
bje [Tue, 3 Jan 2006 22:52:08 +0000 (22:52 +0000)]
* MAINTAINERS (libdecnumber): Add myself.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109293 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-03 Steven G. Kargl <kargls@comcast.net>
kargl [Tue, 3 Jan 2006 22:01:10 +0000 (22:01 +0000)]
2006-01-03  Steven G. Kargl  <kargls@comcast.net>

PR fortran/25101
* resolve.c (resolve_forall_iterators):  Check for scalar variables;
Check stride is nonzero.

* gfortran.dg/forall_2.f90:  New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109288 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoCorrect last commit
hp [Tue, 3 Jan 2006 20:42:55 +0000 (20:42 +0000)]
Correct last commit

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109287 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * g++.dg/abi/thunk3.C, g++.dg/abi/thunk4.C: Gate on
hp [Tue, 3 Jan 2006 20:24:53 +0000 (20:24 +0000)]
* g++.dg/abi/thunk3.C, g++.dg/abi/thunk4.C: Gate on
dg-require-weak.  Adjust regexp to handle leading-underscore
targets, NO_DOT_IN_LABEL targets and space as well as TAB after
.weak.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109286 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * varasm.c (assemble_variable): Handle thread-local COMMON data.
rth [Tue, 3 Jan 2006 16:19:21 +0000 (16:19 +0000)]
    * varasm.c (assemble_variable): Handle thread-local COMMON data.
        * defaults.h (ASM_OUTPUT_TLS_COMMON): Define.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109282 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agogcc:
bonzini [Tue, 3 Jan 2006 14:58:05 +0000 (14:58 +0000)]
gcc:
2006-01-03  Paolo Bonzini  <bonzini@gnu.org>

PR rtl-optimization/25578
* combine.c (combine_simplify_rtx, force_to_mode): Don't
pass a parameter to simplify_shift_const if changing ASHIFTRT
to LSHIFTRT.

gcc/testsuite:
2006-01-03  Paolo Bonzini  <bonzini@gnu.org>

PR rtl-optimization/25578
* gcc.c-torture/execute/20060102-1.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109281 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-03 Paolo Carlini <pcarlini@suse.de>
paolo [Tue, 3 Jan 2006 13:19:23 +0000 (13:19 +0000)]
2006-01-03  Paolo Carlini  <pcarlini@suse.de>

* include/bits/stl_list.h (_List_base<>::_M_get_Node_allocator): Add.
(_M_get_Tp_allocator, get_allocator): Tidy.
(list<>::list(const list&), insert(iterator, size_type, const
value_type&), insert(iterator, _InputIterator, _InputIterator)):
Use _M_get_Node_allocator.
* include/bits/stl_tree.h (_Rb_tree<>::_M_get_Node_allocator()): Add.
(_Rb_tree(const _Rb_tree<>&): Use it.
* include/bits/stl_deque.h (_Deque_base<>::_M_get_map_allocator,
get_allocator): Tidy.
* include/bits/stl_vector.h (_Vector_base<>::get_allocator): Tidy.
* testsuite/23_containers/map/operators/1_neg.cc: Adjust dg-error
line numbers.
* testsuite/23_containers/set/operators/1_neg.cc: Likewise.

* testsuite/testsuite_allocator.h (uneq_allocator<>::swap): Fix.

* testsuite/testsuite_allocator.h (class uneq_allocator): A simple
non-empty testing allocator which can be endowed of a "personality"
at construction time.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109280 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-03 Adrian Straetling <straetling@de.ibm.com>
krebbel [Tue, 3 Jan 2006 11:52:29 +0000 (11:52 +0000)]
2006-01-03  Adrian Straetling  <straetling@de.ibm.com>

* gcc/builtins.c (get_builtin_sync_mem): New function.
(expand_builtin_sync_operation, expand_builtin_compare_and_swap,
expand_builtin_lock_test_and_set, expand_builtin_lock_release):
Call get_builtin_sync_mem to generate mem rtx.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109279 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-03 Paolo Carlini <pcarlini@suse.de>
paolo [Tue, 3 Jan 2006 10:29:25 +0000 (10:29 +0000)]
2006-01-03  Paolo Carlini  <pcarlini@suse.de>

* testsuite/27_io/basic_stringstream/str/char/1.cc: Initialize vars.
* testsuite/27_io/basic_stringstream/str/wchar_t/1.cc: Likewise.
* testsuite/27_io/basic_istringstream/str/char/1.cc: Likewise, tidy.
* testsuite/27_io/basic_istringstream/str/wchar_t/1.cc: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109275 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-03 Richard Guenther <rguenther@suse.de>
rguenth [Tue, 3 Jan 2006 09:15:08 +0000 (09:15 +0000)]
2006-01-03  Richard Guenther  <rguenther@suse.de>

        PR c/25183
* stmt.c (add_case_node): Make sure to clear overflow flags
from ranges.

* gcc.dg/torture/pr25183.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109272 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago Merge from gomp-branch.
jakub [Tue, 3 Jan 2006 09:06:36 +0000 (09:06 +0000)]
Merge from gomp-branch.
* config/sparc/sync.md: New file.
* config/sparc/sparc.md (UNSPECV_MEMBAR, UNSPECV_CAS, UNSPECV_SWAP,
UNSPECV_LDSTUB): New constants.
* config/sparc/sparc.c (sparc_expand_compare_and_swap_12): New function.
* config/sparc/predicates.md (memory_reg_operand): New predicate.
* config/sparc/sparc-protos.h (sparc_expand_compare_and_swap_12): New
prototype.

* gcc.dg/ia64-sync-1.c: On sparc*-*-*, pass -mcpu=v9.
* gcc.dg/ia64-sync-2.c: Likewise.
* gcc.dg/ia64-sync-3.c: Likewise.
* gcc.dg/ia64-sync-4.c: Likewise.
* gcc.dg/sync-2.c: Likewise.
* lib/target-supports.exp (sync_char_short, sync_int_long): Indicate
that sparc64-*-* and sparcv9-*-* supports sync builtins.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109271 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago PR c++/25635
mmitchel [Tue, 3 Jan 2006 08:41:21 +0000 (08:41 +0000)]
PR c++/25635
* class.c (add_method): Set TYPE_HAS_CONVERSION for classes with a
conversion operator.
* decl.c (grokdeclarator): Do not set TYPE_HAS_CONVERSION here.
PR c++/25638
* class.c (add_method): Never associate more than one destructor
with a single class.
PR c++/25637
* cp-tree.h (do_friend): Adjust prototype.
* decl.c (grokfndecl): Make funcdef_flag a bool, not an int.
(grokdeclarator): Likewise.  Refine check for invalid
declarations/definitions of member functions outside of their own
class.
* friend.c (do_friend): Make funcdef_flag a bool, not an int.
PR c++/25633
* parser.c (cp_parser_mem_initializer_list): Check result of
cp_parser_mem_initializer against error_mark_node, not NULL_TREE.
(cp_parser_mem_initializer): Return error_mark_node for failure.
PR c++/25634
* parser.c (cp_parser_template_parameter_list): Call
begin_template_parm_list and end_template_parm_list here.
(cp_parser_type_parameter): Not here.
(cp_parser_template_declaration_after_export): Or here.
(cp_parser_elaborated_type_specifier): Call
cp_parser_check_template_parameters.
* tree.c (build_target_expr_with_type): Use force_target_expr.
PR c++/25635
* g++.dg/parse/operator6.C: New test.
PR c++/25637
* g++.dg/parse/error29.C: New test.
PR c++/25638
* g++.dg/parse/dtor6.C: New test.
PR c++/25633
* g++.dg/parse/ctor3.C: New test.
PR c++/25634
* g++.dg/template/class3.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109270 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * combine.c (reg_subword_p): New predicate to test whether the
sayle [Tue, 3 Jan 2006 07:18:48 +0000 (07:18 +0000)]
* combine.c (reg_subword_p): New predicate to test whether the
destination of a set refers to a subword/piece of a register.
(try_combine): Generalize the code to merge the setting of a
pseudo to a constant followed by a set of a subword of that
register to a constant.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109267 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * tree-ssa-propagate.c (cfg_blocks): Change the type to
kazu [Tue, 3 Jan 2006 06:30:13 +0000 (06:30 +0000)]
* tree-ssa-propagate.c (cfg_blocks): Change the type to
VEC(basic_block,heap) *.
(cfg_blocks_add, cfg_blocks_get, ssa_prop_init,
ssa_prop_fini): Adjust the uses of cfg_blocks.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109266 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * basic-block.h (control_flow_graph): Change the type of
kazu [Tue, 3 Jan 2006 06:29:07 +0000 (06:29 +0000)]
* basic-block.h (control_flow_graph): Change the type of
x_label_to_block_map to VEC(basic_block,gc) *.
* tree-cfg.c (init_empty_tree_cfg, label_to_block_fn,
set_bb_for_stmt): Adjust the uses of x_label_to_block_map.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109265 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * fold-const.c (operand_equal_p): Accept a NULL operand 0 for
steven [Tue, 3 Jan 2006 06:20:21 +0000 (06:20 +0000)]
* fold-const.c (operand_equal_p): Accept a NULL operand 0 for
COMPONENT_REFs.
* emit-rtl.c (mem_attrs_htab_eq): Use iterative_hash_expr for
hashing trees instead of a pointer hash.
(mem_attrs_htab_eq): Do a deep compare instead of a pointer
compare for MEM_EXPR.

PR rtl-optimization/25130
* cse.c (exp_equiv_p): Compare MEM_ATTRS instead of MEM_ALIAS_SET
when comparing MEMs for GCSE

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109264 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * targhooks.h (default_decimal_float_supported_p): Declare.
bje [Tue, 3 Jan 2006 05:08:19 +0000 (05:08 +0000)]
* targhooks.h (default_decimal_float_supported_p): Declare.
* targhooks.c (default_decimal_float_supported_p): Define.
* target-def.h (TARGET_DECIMAL_FLOAT_SUPPORTED_P): Redefine to
`default_decimal_float_supported_p'.
* doc/tm.texi (TARGET_DECIMAL_FLOAT_SUPPORTED_P): Update.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109262 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * combine.c (apply_distributive_law <SUBREG>): Check
nemet [Tue, 3 Jan 2006 05:05:06 +0000 (05:05 +0000)]
* combine.c (apply_distributive_law <SUBREG>): Check
TRULY_NOOP_TRUNCATION.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109261 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoIndex: gcc/ChangeLog
geoffk [Tue, 3 Jan 2006 04:57:10 +0000 (04:57 +0000)]
Index: gcc/ChangeLog
2006-01-02  Geoffrey Keating  <geoffk@apple.com>

* dwarf2out.c (have_switched_text_section): Delete.
(have_multiple_function_sections): New.
(have_location_lists): Make 'bool'.
(add_AT_loc_list): Use 'true' not '1'.
(dwarf2out_switch_text_section): Set have_multiple_function_sections.
(output_loc_list): Use have_multiple_function_sections.
(output_ranges): Likewise.
(dwarf2out_begin_function): Set have_multiple_function_sections if
necessary.
(dwarf2out_source_line): Don't fake separate_line_info_table_in_use.
Check function_section rather than DECL_SECTION_NAME.
(dwarf2out_finish): Use have_multiple_function_sections.
Don't clear have_location_lists.

Index: gcc/testsuite/ChangeLog
2006-01-02  Geoffrey Keating  <geoffk@apple.com>

* g++.dg/debug/debug9.C: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109260 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * zh_CN.po: Update.
jsm28 [Tue, 3 Jan 2006 02:08:49 +0000 (02:08 +0000)]
* zh_CN.po: Update.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109258 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * libtool-ldflags: New script.
mmitchel [Tue, 3 Jan 2006 00:30:27 +0000 (00:30 +0000)]
* libtool-ldflags: New script.

* src/Makefile.am (LTLDFLAGS): New variable.
(CXXLINK): Use LTLDFLAGS.
* src/Makefile.in: Regenerated.
* libsupc++/Makefile.am (LTLDFLAGS): New variable.
(CXXLINK): Use LTLDFLAGS.
* libsupc++/Makefile.in: Regenerated.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109256 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoDaily bump.
gccadmin [Tue, 3 Jan 2006 00:17:30 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109253 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * cfglayout.c (fixup_reorder_chain): Remove kludge for the
ebotcazou [Mon, 2 Jan 2006 22:47:50 +0000 (22:47 +0000)]
* cfglayout.c (fixup_reorder_chain): Remove kludge for the
case of conditional jump jumping to the next instruction.
* cfgrtl.c (force_nonfallthru_and_redirect): Accept all
cases of conditional jump jumping to the next instruction.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109247 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoPR fortran/24640
kargl [Mon, 2 Jan 2006 22:23:35 +0000 (22:23 +0000)]
PR fortran/24640
* parse.c (next_free): Check for whitespace after the label.
* match.c (gfc_match_small_literal_int): Initialize cnt variable.

* gfortran.dg/label_2.f90: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109246 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * i386.c (*_cost): Add COSTS_N_INSNS.
hubicka [Mon, 2 Jan 2006 19:19:22 +0000 (19:19 +0000)]
* i386.c (*_cost): Add COSTS_N_INSNS.
(ix86_rtx_costs): Do not use COSTS_N_INSNS.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109242 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoconfig:
bonzini [Mon, 2 Jan 2006 18:53:27 +0000 (18:53 +0000)]
config:
2006-01-02  Paolo Bonzini  <bonzini@gnu.org>

PR target/25259
* stdint.m4: New.

gcc:
2006-01-02  Paolo Bonzini  <bonzini@gnu.org>

PR target/25259
* Makefile.in (DECNUMINC): Include libdecnumber's build directory.

libgfortran:
2006-01-02  Paolo Bonzini  <bonzini@gnu.org>

PR target/25259
* configure.ac: Use GCC_HEADER_STDINT.
* libgfortran.h: Include gstdint.h.
* aclocal.m4: Regenerate.
* configure: Regenerate.

libdecnumber:
2006-01-02  Paolo Bonzini  <bonzini@gnu.org>

PR target/25259
* configure.ac: Use GCC_HEADER_STDINT.
* decContext.h: Include gstdint.h.
* aclocal.m4: Regenerate.
* configure: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109241 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * configure.in: When reconfiguring remove Makefile in
schwab [Mon, 2 Jan 2006 18:34:24 +0000 (18:34 +0000)]
* configure.in: When reconfiguring remove Makefile in
all stage directories.
* configure: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109240 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * decl2.c (mark_used): Fix typo in comment.
mmitchel [Mon, 2 Jan 2006 17:53:44 +0000 (17:53 +0000)]
* decl2.c (mark_used): Fix typo in comment.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109239 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * config/arm/arm.c (all_fpus): Fix comment typo.
reichelt [Mon, 2 Jan 2006 17:28:54 +0000 (17:28 +0000)]
* config/arm/arm.c (all_fpus): Fix comment typo.
* config/darwin.c: Likewise.
* config/frv/frv.h (FRV_STRUCT_VALUE_REGNUM): Likewise.
* config/h8300/h8300.md (extendqisi2_h8300hs): Likewise.
* config/m68hc11/m68hc11.c (m68hc11_reload_operands): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109238 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * parser.c (cp_parser_using_declaration): Skip name-lookup on
reichelt [Mon, 2 Jan 2006 16:19:26 +0000 (16:19 +0000)]
* parser.c (cp_parser_using_declaration): Skip name-lookup on
invalid scope.

* g++.dg/lookup/using12.C: Tighten error marker.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109237 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-02 Paolo Carlini <pcarlini@suse.de>
paolo [Mon, 2 Jan 2006 09:57:49 +0000 (09:57 +0000)]
2006-01-02  Paolo Carlini  <pcarlini@suse.de>

PR libstdc++/24645
* include/std/std_istream.h (basic_istream<>::_M_extract): New.
(operator>>(bool&), operator>>(short&), operator>>(unsigned short&),
operator>>(int&), operator>>(unsigned int&), operator>>(long&),
operator>>(unsigned long&), operator>>(long long&), operator>>
(unsigned long long&), operator>>(float&), operator>>(double&),
operator>>(long double&), operator>>(void*&)): Use it.
* include/bits/istream.tcc (basic_istream<>::_M_extract): Define.
* include/std/std_ostream.h (basic_ostream<>::_M_insert): New.
(operator<<(long), operator<<(unsigned long), operator<<(bool),
operator<<(short), operator<<(unsigned short), operator<<(int),
operator<<(unsigned int), operator<<(long long), operator<<
(unsigned long long), operator<<(double), operator<<(float),
operator<<(long double), operator<<(const void*): Use it.
* include/bits/ostream.tcc (basic_ostream<>::_M_insert): Define.
* src/istream-inst.cc: Add _M_insert instantiations.
* src/ostream-inst.cc: Add _M_extract instantiations.
* config/abi/pre/gnu.ver: Export the new symbols @GLIBCXX_3.4.7;
detail existing @GLIBCXX_3.4 exports of basic_ostream, num_put,
money_put, etc., symbols to avoid exporting _M_insert symbols
@GLIBCXX_3.4.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109236 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agochangelog rotated for gcc
bonzini [Mon, 2 Jan 2006 09:02:58 +0000 (09:02 +0000)]
changelog rotated for gcc

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109235 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoDaily bump.
gccadmin [Mon, 2 Jan 2006 00:17:22 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109232 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * config/rs6000/rs6000.c (rs6000_expand_compare_and_swapqhi): New.
dje [Sun, 1 Jan 2006 22:00:46 +0000 (22:00 +0000)]
    * config/rs6000/rs6000.c (rs6000_expand_compare_and_swapqhi): New.
        (rs6000_split_compare_and_swapqhi): New.
        * config/rs6000/sync.md (sync_compare_and_swap{hi,qi}): New.
        (sync_compare_and_swapqhi_internal): New.
        * config/rs6000/rs6000-protos.h: Declare.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109226 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago* Split the ChangeLog into years.
kargl [Sun, 1 Jan 2006 17:14:35 +0000 (17:14 +0000)]
* Split the ChangeLog into years.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109225 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago* Split the ChangeLog into years.
kargl [Sun, 1 Jan 2006 17:04:47 +0000 (17:04 +0000)]
* Split the ChangeLog into years.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109224 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2006-01-01 Andreas Tobler <a.tobler@schweiz.ch>
andreast [Sun, 1 Jan 2006 16:36:56 +0000 (16:36 +0000)]
2006-01-01  Andreas Tobler  <a.tobler@schweiz.ch>
    Andrew Pinski <pinskia@physics.uc.edu>

* gcc.target/powerpc/darwin-abi-3.c: New file.
* gcc.target/powerpc/darwin-abi-4.c: Likewise.
* gcc.target/powerpc/darwin-abi-5.c: Likewise.
* gcc.target/powerpc/darwin-abi-6.c: Likewise.
* gcc.target/powerpc/darwin-abi-7.c: Likewise.
* gcc.target/powerpc/darwin-abi-8.c: Likewise.
* gcc.target/powerpc/darwin-abi-9.c: Likewise.
* gcc.target/powerpc/darwin-abi-10.c: Likewise.
* gcc.target/powerpc/darwin-abi-11.c: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109223 138bc75d-0d04-0410-961f-82ee72b054a4

18 years agoIt's 2006, i think
dberlin [Sun, 1 Jan 2006 15:06:13 +0000 (15:06 +0000)]
It's 2006, i think

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109222 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2005-01-01 Daniel Berlin <dberlin@dberlin.org>
dberlin [Sun, 1 Jan 2006 14:40:38 +0000 (14:40 +0000)]
2005-01-01  Daniel Berlin  <dberlin@dberlin.org>

* gcc.dg/tree-ssa/loadpre1.c: New;
* gcc.dg/tree-ssa/loadpre2.c: New;
* gcc.dg/tree-ssa/loadpre3.c: New;
* gcc.dg/tree-ssa/loadpre4.c: New;
* gcc.dg/tree-ssa/loadpre5.c: New;
* gcc.dg/tree-ssa/loadpre6.c: New;
* gcc.dg/tree-ssa/loadpre7.c: New;
* gcc.dg/tree-ssa/loadpre8.c: New;
* gcc.dg/tree-ssa/loadpre9.c: New;

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109221 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * g++.dg/abi/thunk3.C: Adjust regexp to be 64bit safe.
nathan [Sun, 1 Jan 2006 13:29:46 +0000 (13:29 +0000)]
* g++.dg/abi/thunk3.C: Adjust regexp to be 64bit safe.
* g++.dg/abi/thunk4.C: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109220 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago * gcc.dg/tree-ssa/loadpre6.c: Fix prototype of malloc to be
aj [Sun, 1 Jan 2006 12:39:51 +0000 (12:39 +0000)]
    * gcc.dg/tree-ssa/loadpre6.c: Fix prototype of malloc to be
        portable.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109219 138bc75d-0d04-0410-961f-82ee72b054a4

18 years ago2005-12-31 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Sun, 1 Jan 2006 02:45:22 +0000 (02:45 +0000)]
2005-12-31  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR libgfortran/25594
PR libgfortran/25419
* io/list_read.c (list_formatted_read_scalar): Test for comma to return
a null value (default). Revert patch of 25419 on 2005-12-28.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109211 138bc75d-0d04-0410-961f-82ee72b054a4