gcc.git
19 years agobuiltins.c (fold_builtin_1): Take decomposed arguments of CALL_EXPR.
Kazu Hirata [Mon, 21 Mar 2005 14:27:39 +0000 (14:27 +0000)]
builtins.c (fold_builtin_1): Take decomposed arguments of CALL_EXPR.

* builtins.c (fold_builtin_1): Take decomposed arguments of
CALL_EXPR.
(fold_builtin): Update a call to fold_builtin_1.

From-SVN: r96798

19 years agobuiltins.c (fold_builtin_1): Take decomposed arguments of CALL_EXPR.
Kazu Hirata [Mon, 21 Mar 2005 14:26:34 +0000 (14:26 +0000)]
builtins.c (fold_builtin_1): Take decomposed arguments of CALL_EXPR.

* builtins.c (fold_builtin_1): Take decomposed arguments of
CALL_EXPR.

From-SVN: r96797

19 years agoOops - forgot to include ChangeLog entry for m32r patch
Nick Clifton [Mon, 21 Mar 2005 13:08:39 +0000 (13:08 +0000)]
Oops - forgot to include ChangeLog entry for m32r patch

From-SVN: r96796

19 years agocrash25.C: Fix typo.
Paolo Carlini [Mon, 21 Mar 2005 13:02:38 +0000 (13:02 +0000)]
crash25.C: Fix typo.

2005-03-21  Paolo Carlini  <pcarlini@suse.de>

* g++.dg/parse/crash25.C: Fix typo.

From-SVN: r96795

19 years agoremove conflict indicators
Nathan Sidwell [Mon, 21 Mar 2005 12:33:15 +0000 (12:33 +0000)]
remove conflict indicators

From-SVN: r96790

19 years agore PR other/20564 (gcov default behaviour changed)
Nathan Sidwell [Mon, 21 Mar 2005 12:31:10 +0000 (12:31 +0000)]
re PR other/20564 (gcov default behaviour changed)

PR other/20564
* gcov.c (output_lines): Only output function block summary when
outputting branch information.
* doc/gcov.texi: Document format of preamble and additional block
information lines.

From-SVN: r96788

19 years agore PR c++/20461 (ICE at "class 'C' does not have any field named 'f'" error)
Paolo Carlini [Mon, 21 Mar 2005 11:53:00 +0000 (11:53 +0000)]
re PR c++/20461 (ICE at  "class 'C' does not have any field named 'f'" error)

2005-03-21  Paolo Carlini  <pcarlini@suse.de>

PR c++/20461
* g++.dg/parse/crash24.C: New test.

PR c++/20536
* g++.dg/parse/crash25.C: New test.

2005-03-21  Paolo Carlini  <pcarlini@suse.de>

PR c++/20147
* g++.dg/ext/stmtexpr4.C: New test.

From-SVN: r96785

19 years agore PR c++/20461 (ICE at "class 'C' does not have any field named 'f'" error)
Paolo Carlini [Mon, 21 Mar 2005 11:49:32 +0000 (11:49 +0000)]
re PR c++/20461 (ICE at  "class 'C' does not have any field named 'f'" error)

2005-03-21  Paolo Carlini  <pcarlini@suse.de>

PR c++/20461
PR c++/20536
* init.c (emit_mem_initializers): Don't crash on undefined
types.

2005-03-21  Paolo Carlini  <pcarlini@suse.de>

PR c++/20147
* semantics.c (finish_stmt_expr_expr): Return immediately
if error_operand_p (expr).

From-SVN: r96784

19 years agoOops - forgot to include ChangeLog entry for m32r patch
Kazu Hirata [Mon, 21 Mar 2005 10:06:27 +0000 (10:06 +0000)]
Oops - forgot to include ChangeLog entry for m32r patch

From-SVN: r96782

19 years agolibgcc2.h (LIBGCC2_HAS_SF_MODE): New macro.
Richard Sandiford [Mon, 21 Mar 2005 07:22:22 +0000 (07:22 +0000)]
libgcc2.h (LIBGCC2_HAS_SF_MODE): New macro.

* libgcc2.h (LIBGCC2_HAS_SF_MODE): New macro.
(LIBGCC2_HAS_DF_MODE, LIBGCC2_HAS_TF_MODE, LIBGCC2_HAS_XF_MODE): Make
the defaults false if BITS_PER_UNIT != 8.
(SFtype, SCtype, __fixsfdi, __floatdisf, __fixunssfSI, __fixunssfDI)
(__powisf2, __divsc3, __mulsc3): Guard with LIBGCC2_HAS_SF_MODE rather
than BITS_PER_UNIT != 8.
(L_fixdfdi, L_fixsfdi, L_fixtfdi, L_fixunsdfdi, L_fixunsdfsi)
(L_fixunssfdi, L_fixunssfsi, L_fixunstfdi, L_fixunsxfdi, L_fixunsxfsi)
(L_fixxfdi, L_floatdidf, L_floatdisf, L_floatditf, L_floatdixf): Remove
#undefs.
* libgcc2.c (__fixunssfDI, __fixsfdi, __floatdisf, __fixunssfSI)
(__powisf2, __divsc3, __mulsc3): Guard with LIBGCC2_HAS_SF_MODE.

From-SVN: r96778

19 years agore PR middle-end/20539 (ICE in simplify_subreg, at simplify-rtx.c:3674)
Roger Sayle [Mon, 21 Mar 2005 03:30:08 +0000 (03:30 +0000)]
re PR middle-end/20539 (ICE in simplify_subreg, at simplify-rtx.c:3674)

PR middle-end/20539
* fold-const.c (fold_binary): Fix type mismatch between
TRUTH_{AND,OR,XOR}_EXPR nodes an their operands' types.
(fold_binary) <TRUTH_XOR_EXPR>: Avoid calling invert_truthvalue
for non-truth-valued expressions.

* c-common.c (c_common_truthvalue_conversion): Handle ERROR_MARK
and FUNCTION_DECL in the main switch.
<TRUTH_ANDIF_EXPR, TRUTH_ORIF_EXPR, TRUTH_AND_EXPR, TRUTH_OR_EXPR,
TRUTH_XOR_EXPR>: When changing the result type of these tree nodes,
we also need to convert their operands to match.
<TRUTH_NOT_EXPR>: Likewise.

* gcc.c-torture/compile/pr13066-1.c: New test case.
* gcc.c-torture/compile/pr20539-1.c: Likewise.
* g++.dg/opt/pr13066-1.C: Likewise.

From-SVN: r96777

19 years agoc-common.c (lvalue_or_else): Replace by lvalue_error; only give diagnostic without...
Joseph Myers [Mon, 21 Mar 2005 02:22:08 +0000 (02:22 +0000)]
c-common.c (lvalue_or_else): Replace by lvalue_error; only give diagnostic without checking whether an lvalue.

* c-common.c (lvalue_or_else): Replace by lvalue_error; only give
diagnostic without checking whether an lvalue.
* c-common.h (lvalue_p): Remove.
(enum lvalue_use): Update comment.
(lvalue_or_else): Replace by lvalue_error.
* c-typeck.c (lvalue_p): Make static.
(lvalue_or_else): New.  Call lvalue_error.

cp:
* cp-tree.h (lvalue_or_else, lvalue_p): New.
* typeck.c (lvalue_or_else): New.  Call lvalue_error.

From-SVN: r96776

19 years agoDaily bump.
GCC Administrator [Mon, 21 Mar 2005 00:16:24 +0000 (00:16 +0000)]
Daily bump.

[[Split portion of a mixed commit.]]

From-SVN: r96774.2

19 years agors6000.c (rs6000_parm_start): New function.
Alan Modra [Sun, 20 Mar 2005 23:25:14 +0000 (23:25 +0000)]
rs6000.c (rs6000_parm_start): New function.

* config/rs6000/rs6000.c (rs6000_parm_start): New function.
(function_arg_advance): Use rs6000_parm_start.
(function_arg, rs6000_arg_partial_bytes): Likewise.

From-SVN: r96771

19 years agoc-common.c (check_case_value): Adjust comment about stripping NOPs.
Joseph Myers [Sun, 20 Mar 2005 22:36:42 +0000 (22:36 +0000)]
c-common.c (check_case_value): Adjust comment about stripping NOPs.

* c-common.c (check_case_value): Adjust comment about stripping
NOPs.
(handle_vector_size_attribute): Don't strip NON_LVALUE_EXPR.
* c-typeck.c (default_conversion, convert_arguments,
build_modify_expr, convert_for_assignment, store_init_value,
digest_init): Use STRIP_TYPE_NOPS instead of stripping nops
manually.  Remove inaccurate comments.

From-SVN: r96770

19 years agovarasm.c (do_assemble_alias): Restore comment describing function.
Roger Sayle [Sun, 20 Mar 2005 21:23:24 +0000 (21:23 +0000)]
varasm.c (do_assemble_alias): Restore comment describing function.

* varasm.c (do_assemble_alias): Restore comment describing function.
Annotate the target parameter as potentially unused.

Co-Authored-By: Joseph Myers <joseph@codesourcery.com>
From-SVN: r96768

19 years agore PR target/18551 (wrong asm output for -mcall-prologues with g++)
Marek Michalkiewicz [Sun, 20 Mar 2005 21:12:08 +0000 (22:12 +0100)]
re PR target/18551 (wrong asm output for -mcall-prologues with g++)

PR target/18551
* config/avr/avr.c (avr_output_function_prologue): Do not use
current_function_name() in a label, use a local label instead.

From-SVN: r96765

19 years agors6000.c (rs6000_generate_compare): Test flag_finite_math_only, not flag_unsafe_math_...
David Edelsohn [Sun, 20 Mar 2005 20:27:05 +0000 (20:27 +0000)]
rs6000.c (rs6000_generate_compare): Test flag_finite_math_only, not flag_unsafe_math_optimizations.

        * config/rs6000/rs6000.c (rs6000_generate_compare): Test
        flag_finite_math_only, not flag_unsafe_math_optimizations.

From-SVN: r96764

19 years agobuiltins.c (fold_builtin_1): Update a call to targetm.fold_builtin.
Kazu Hirata [Sun, 20 Mar 2005 15:54:41 +0000 (15:54 +0000)]
builtins.c (fold_builtin_1): Update a call to targetm.fold_builtin.

* builtins.c (fold_builtin_1): Update a call to
targetm.fold_builtin.
* hooks.c (hook_tree_tree_bool_null): Rename to
hook_tree_tree_tree_bool_null.  Take one more argument of type
tree.
* hooks.h: Update the prototype of hook_tree_tree_bool_null.
* target-def.h (TARGET_FOLD_BUILTIN): Define it as
hook_tree_tree_tree_bool_null.
* target.h (gcc_target): Update the prototype of fold_builtin.
* config/alpha/alpha.c (alpha_fold_builtin): Take decomposed
arguments of CALL_EXPR.
* doc/tm.texi (TARGET_FOLD_BUILTIN): Update.  Mention the
new prototype.

From-SVN: r96762

19 years agocgraph.h (cgraph_node): Add prev_clone pointer.
Jan Hubicka [Sun, 20 Mar 2005 15:27:18 +0000 (16:27 +0100)]
cgraph.h (cgraph_node): Add prev_clone pointer.

* cgraph.h (cgraph_node): Add prev_clone pointer.
* cgraph.c (cgraph_remove_node): Remove from doubly linked chain.
(cgraph_clone_node): Produce doubly linked chain.

From-SVN: r96761

19 years agoc-common.c (handle_aligned_attribute, [...]): Do not strip NOPS from INTEGER_CSTs.
Joseph Myers [Sun, 20 Mar 2005 15:23:50 +0000 (15:23 +0000)]
c-common.c (handle_aligned_attribute, [...]): Do not strip NOPS from INTEGER_CSTs.

* c-common.c (handle_aligned_attribute, check_function_sentinel,
get_nonnull_operand, handle_sentinel_attribute,
check_function_arguments_recurse): Do not strip NOPS from
INTEGER_CSTs.
* c-decl.c (check_bitfield_type_and_width, build_enumerator):
Likewise.
* c-format.c (get_constant): Likewise.
* c-parser.c (c_parser_postfix_expression): Likewise.
* c-typeck.c (set_init_index): Likewise.
(convert_arguments): Don't check for NOP_EXPR containing integer
constant.

From-SVN: r96760

19 years agobuiltins.c (fold_fixed_mathfn, [...]): Take decomposed arguments of CALL_EXPR.
Kazu Hirata [Sun, 20 Mar 2005 14:39:01 +0000 (14:39 +0000)]
builtins.c (fold_fixed_mathfn, [...]): Take decomposed arguments of CALL_EXPR.

* builtins.c (fold_fixed_mathfn, fold_builtin_trunc,
fold_builtin_floor, fold_builtin_ceil, fold_builtin_lround):
Take decomposed arguments of CALL_EXPR.
(fold_builtin_1): Update calls to the functions mentioned
above.

From-SVN: r96759

19 years agoc-decl.c (check_bitfield_type_and_width): Require bit-field width to have integer...
Joseph Myers [Sun, 20 Mar 2005 01:52:35 +0000 (01:52 +0000)]
c-decl.c (check_bitfield_type_and_width): Require bit-field width to have integer type.

* c-decl.c (check_bitfield_type_and_width): Require bit-field
width to have integer type.
(build_enumerator): Require enumerator value to have integer type.

testsuite:
* gcc.dg/bitfld-14.c, gcc.dg/enum3.c: New tests.

From-SVN: r96755

19 years agoDaily bump.
GCC Administrator [Sun, 20 Mar 2005 00:16:24 +0000 (00:16 +0000)]
Daily bump.

[[Split portion of a mixed commit.]]

From-SVN: r96753.2

19 years agoextend.texi (__builtin_inf): Move statement about INFINITY to __builtin_inff.
Joseph Myers [Sat, 19 Mar 2005 20:58:25 +0000 (20:58 +0000)]
extend.texi (__builtin_inf): Move statement about INFINITY to __builtin_inff.

* doc/extend.texi (__builtin_inf): Move statement about INFINITY
to __builtin_inff.

From-SVN: r96748

19 years agoc.opt (ansi, [...]): Correct descriptions.
Joseph Myers [Sat, 19 Mar 2005 20:25:53 +0000 (20:25 +0000)]
c.opt (ansi, [...]): Correct descriptions.

* c.opt (ansi, std=iso9899:1990, std=iso9899:1999,
std=iso9899:199x): Correct descriptions.

From-SVN: r96745

19 years agoconfig.gcc: Consistently use solaris2.1[0-9]* instead of solaris2.1[0-9].
Joseph Myers [Sat, 19 Mar 2005 20:19:06 +0000 (20:19 +0000)]
config.gcc: Consistently use solaris2.1[0-9]* instead of solaris2.1[0-9].

gcc:
* config.gcc: Consistently use solaris2.1[0-9]* instead of
solaris2.1[0-9].

libcpp:
* configure.ac: Consistently use solaris2.1[0-9]* instead of
solaris2.1[0-9].
* configure: Regenerate.

From-SVN: r96743

19 years agoFix dates on ChangeLog
Tobias Schlüter [Sat, 19 Mar 2005 19:46:52 +0000 (20:46 +0100)]
Fix dates on ChangeLog

From-SVN: r96740

19 years agore PR fortran/18525 (ICE on valid code in gfc_get_symbol_decl())
Tobias Schlüter [Sat, 19 Mar 2005 19:45:45 +0000 (20:45 +0100)]
re PR fortran/18525 (ICE on valid code in gfc_get_symbol_decl())

fortran/
* dump-parse-tree.c (gfc_show_expr): Dump name of namespace
in which the variable is declared.

PR fortran/18525
* resolve.c (was_declared): Also check for dummy attribute.

testsuite/
PR fortran/18525
* gfortran.dg/nesting_1.f90: New test.

From-SVN: r96739

19 years agogfortran.h (arith): Remove ARITH_0TO0.
Tobias Schlüter [Sat, 19 Mar 2005 19:23:04 +0000 (20:23 +0100)]
gfortran.h (arith): Remove ARITH_0TO0.

* gfortran.h (arith): Remove ARITH_0TO0.
* arith.c (gfc_arith_error): Remove handling of ARITH_0TO0.
(gfc_arith_power): Remove special casing of zero to integral
power zero.

From-SVN: r96737

19 years agobuiltins.c (fold_trunc_transparent_mathfn): Take decomposed arguments of CALL_EXPR.
Kazu Hirata [Sat, 19 Mar 2005 18:01:19 +0000 (18:01 +0000)]
builtins.c (fold_trunc_transparent_mathfn): Take decomposed arguments of CALL_EXPR.

* builtins.c (fold_trunc_transparent_mathfn): Take decomposed
arguments of CALL_EXPR.
(fold_builtin_trunc, fold_builtin_floor, fold_builtin_ceil,
fold_builtin_found, fold_builtin_1): Update calls to
fold_trunc_transparent_mathfn.

From-SVN: r96736

19 years agobuiltins.c (fold_builtin_memcpy): Take decomposed arguments of CALL_EXPR.
Kazu Hirata [Sat, 19 Mar 2005 17:34:25 +0000 (17:34 +0000)]
builtins.c (fold_builtin_memcpy): Take decomposed arguments of CALL_EXPR.

* builtins.c (fold_builtin_memcpy): Take decomposed arguments
of CALL_EXPR.
(expand_builtin_memcpy, fold_builtin_1): Update calls to
fold_builtin_memcpy.

From-SVN: r96735

19 years agore PR middle-end/20493 (Bootstrap failure because of aliased symbols)
John David Anglin [Sat, 19 Mar 2005 16:45:59 +0000 (16:45 +0000)]
re PR middle-end/20493 (Bootstrap failure because of aliased symbols)

PR middle-end/20493
* fold-const.c (fold_widened_comparison): Don't optimize casts of
function pointers on targets that require function pointer
canonicalization.
(fold_sign_changed_comparison): Likewise.

From-SVN: r96733

19 years agocombine.c (try_combine): When changing the mode of a hard reg, make sure that doing...
Bernd Schmidt [Sat, 19 Mar 2005 15:01:45 +0000 (15:01 +0000)]
combine.c (try_combine): When changing the mode of a hard reg, make sure that doing so is valid.

* combine.c (try_combine): When changing the mode of a hard reg, make
sure that doing so is valid.

From-SVN: r96730

19 years agore PR c++/20240 (invalid using-redeclaration accepted)
Kriang Lerdsuwanakij [Sat, 19 Mar 2005 12:35:24 +0000 (12:35 +0000)]
re PR c++/20240 (invalid using-redeclaration accepted)

PR c++/20240
* decl.c (decls_match): Compare context of VAR_DECL.

* g++.dg/lookup/using13.C: New test.

From-SVN: r96725

19 years agore PR c++/20333 (ICE on invalid code, typename outside of a template)
Kriang Lerdsuwanakij [Sat, 19 Mar 2005 11:54:49 +0000 (11:54 +0000)]
re PR c++/20333 (ICE on invalid code, typename outside of a template)

PR c++/20333
* parser.c (cp_parser_postfix_expression) <case RID_TYPENAME>:
Check the return value of cp_parser_nested_name_specifier.

* g++.dg/template/crash36.C: New test.

From-SVN: r96720

19 years agoavr.c (avr_init_stack, [...]): Make static.
Richard Sandiford [Sat, 19 Mar 2005 08:54:37 +0000 (08:54 +0000)]
avr.c (avr_init_stack, [...]): Make static.

* config/avr/avr.c (avr_init_stack, avr_mcu_name): Make static.
(TARGET_HANDLE_OPTION): Override default.
(avr_handle_option): New function.
* config/avr/avr.h (MASK_ALL_DEBUG, MASK_ORDER_1, MASK_INSN_SIZE_DUMP)
(MASK_ORDER_2, MASK_NO_TABLEJUMP, MASK_INT8, MASK_NO_INTERRUPTS)
(MASK_CALL_PROLOGUES, MASK_TINY_STACK, MASK_SHORT_CALLS)
(TARGET_ORDER_1, TARGET_ORDER_2, TARGET_INT8, TARGET_NO_INTERRUPTS)
(TARGET_INSN_SIZE_DUMP, TARGET_CALL_PROLOGUES, TARGET_TINY_STACK)
(TARGET_NO_TABLEJUMP, TARGET_SHORT_CALLS, TARGET_ALL_DEBUG)
(TARGET_SWITCHES, avr_init_stack, avr_mcu_name)
(TARGET_OPTIONS): Delete.
* config/avr/avr.opt: New file.

From-SVN: r96719

19 years agoFix problem that caused compiled java code to trigger an internal gdb error.
James E Wilson [Sat, 19 Mar 2005 03:06:51 +0000 (03:06 +0000)]
Fix problem that caused compiled java code to trigger an internal gdb error.

PR c++/19769
* dwarf2out.c (declare_in_namespace): Ignore decls with an abstract
origin.

From-SVN: r96715

19 years agoMake-lang.in (fortran-warn): Remove -Wno-error.
Kaveh R. Ghazi [Sat, 19 Mar 2005 01:48:22 +0000 (01:48 +0000)]
Make-lang.in (fortran-warn): Remove -Wno-error.

* Make-lang.in (fortran-warn): Remove -Wno-error.
(expr.o-warn, resolve.o-warn, simplify.o-warn,
trans-common.o-warn): Specify -Wno-error.

From-SVN: r96714

19 years agomn10300-protos.h: Remove the prototypes for call_address_operand, const_8bit_operand.
Kazu Hirata [Sat, 19 Mar 2005 00:21:23 +0000 (00:21 +0000)]
mn10300-protos.h: Remove the prototypes for call_address_operand, const_8bit_operand.

* config/mn10300/mn10300-protos.h: Remove the prototypes for
call_address_operand, const_8bit_operand.
* config/mn10300/mn10300.c (call_address_operand,
const_8bit_operand, const_1f_operand): Move to predicates.md.
* config/mn10300/mn10300.h (PREDICATE_CODES): Remove.
* config/mn10300/mn10300.md: Include predicates.md.
* config/mn10300/predicates.md: New.

From-SVN: r96712

19 years agoDaily bump.
GCC Administrator [Sat, 19 Mar 2005 00:16:53 +0000 (00:16 +0000)]
Daily bump.

[[Split portion of a mixed commit.]]

From-SVN: r96710.2

19 years ago* gcc_update (silent): Unset instead of initializing to null.
Alexandre Oliva [Sat, 19 Mar 2005 00:16:22 +0000 (00:16 +0000)]
* gcc_update (silent): Unset instead of initializing to null.

From-SVN: r96708

19 years ago* gcc_update (apply_patch): Properly quote $1.
Andreas Schwab [Fri, 18 Mar 2005 22:43:26 +0000 (22:43 +0000)]
* gcc_update (apply_patch): Properly quote $1.

From-SVN: r96705

19 years agoc-common.c, [...]: Use %D for declarations in diagnostics and %E for identifiers...
Joseph Myers [Fri, 18 Mar 2005 20:47:27 +0000 (20:47 +0000)]
c-common.c, [...]: Use %D for declarations in diagnostics and %E for identifiers, not %s.

* c-common.c, c-decl.c, c-format.c, c-typeck.c: Use %D for
declarations in diagnostics and %E for identifiers, not %s.

From-SVN: r96701

19 years agobasic-block.h (scale_bbs_frequencies_int, [...]): Declare.
Jan Hubicka [Fri, 18 Mar 2005 20:15:06 +0000 (21:15 +0100)]
basic-block.h (scale_bbs_frequencies_int, [...]): Declare.

* basic-block.h (scale_bbs_frequencies_int,
scale_bbs_frequencies_gcov_type): Declare.
* cfg.c (RDIV): New macro.
(update_bb_frequency_for_threading): Fix.
* basic-block.h (scale_bbs_frequencies_int,
scale_bbs_frequencies_gcov_type): New.
* cfgloopmanip.c (scale_bbs_frequencies): Kill.
(scale_loop_frequencies, duplicate_loop_to_header_edge): Use
scale_bbs_frequencies_int.
* tree-ssa-loop-ch.c (copy_loop_headers): Fix profiling info.

Co-Authored-By: Dale Johannesen <dalej@apple.com>
From-SVN: r96700

19 years agov850.h (PREDICATE_CODES): Remove a nonexistent predicate.
Kazu Hirata [Fri, 18 Mar 2005 19:02:20 +0000 (19:02 +0000)]
v850.h (PREDICATE_CODES): Remove a nonexistent predicate.

* config/v850/v850.h (PREDICATE_CODES): Remove a nonexistent
predicate.

From-SVN: r96699

19 years agov850.h (PREDICATE_CODES): Remove a nonexistent predicate in PREDICATE_CODES.
Kazu Hirata [Fri, 18 Mar 2005 19:01:05 +0000 (19:01 +0000)]
v850.h (PREDICATE_CODES): Remove a nonexistent predicate in PREDICATE_CODES.

* config/v850/v850.h (PREDICATE_CODES): Remove a nonexistent
predicate in PREDICATE_CODES.

From-SVN: r96698

19 years agopa-protos.h: Add prototypes for magic_milli and shadd_constant_p.
Kazu Hirata [Fri, 18 Mar 2005 18:10:48 +0000 (18:10 +0000)]
pa-protos.h: Add prototypes for magic_milli and shadd_constant_p.

* config/pa/pa-protos.h: Add prototypes for magic_milli and
shadd_constant_p.
* config/pa/pa.c (reg_or_0_operand, call_operand_address,
symbolic_operand, symbolic_memory_operand,
reg_or_0_or_nonsymb_mem_operand, reg_before_reload_operand,
indexed_memory_operand, move_dest_operand, move_src_operand,
prefetch_cc_operand, prefetch_nocc_operand,
reg_or_cint_move_operand, pic_label_operand, fp_reg_operand,
arith_operand, arith11_operand, pre_cint_operand,
post_cint_operan, arith_double_operand, ireg_or_int5_operand,
ireg_operand, int5_operand, uint5_operand, int11_operand,
uint32_operand, arith5_operand, and_operand, ior_operand,
lhs_lshift_operand, lhs_lshift_cint_operand, arith32_operand,
pc_or_label_operand, div_operand, plus_xor_ior_operator,
shadd_operand, movb_comparison_operator,
cmpib_comparison_operator): Move to predicates.md.
(magic_milli, shadd_constant_p): Make it extern.
* config/pa/pa.h (PREDICATE_CODES): Remove.
* config/pa/pa.md: Include predicates.md.
* config/pa/predicates.md: New.

From-SVN: r96692

19 years agoconfig/m32r/m32r-protos.h...
Kazu Hirata [Fri, 18 Mar 2005 18:05:54 +0000 (18:05 +0000)]
config/m32r/m32r-protos.h...

config/m32r/m32r-protos.h: Remove the prototypes for
call_address_operand, symbolic_operand, seth_add3_operand,
cmp_int16_operand, uint16_operand, reg_or_int16_operand,
reg_or_uint16_operand, reg_or_cmp_int16_operand,
two_insn_const_operand, move_src_operand,
move_double_src_operand, move_dest_operand,
eqne_comparison_operator, signed_comparison_operator,
large_insn_p, conditional_move_operand, carry_compare_operand,
m32r_block_immediate_operand, extend_operand,
reg_or_eq_int16_operand, int8_operand, and
reg_or_zero_operand.
* config/m32r/m32r.c (call_address_operand, symbolic_operand,
seth_add3_operand, int8_operand, cmp_int16_operand,
uint16_operand, reg_or_int16_operand, reg_or_uint16_operand,
reg_or_eq_int16_operand, reg_or_cmp_int16_operand,
reg_or_zero_operand, two_insn_const_operand, move_src_operand,
move_double_src_operand, move_dest_operand,
eqne_comparison_operator, signed_comparison_operator,
extend_operand, small_insn_p, large_insn_p,
conditional_move_operand, carry_compare_operand,
m32r_block_immediate_operand): Move to predicates.md.
(MAX_MOVE_BYTES): Move to m32r.h.
* config/m32r/m32r.h (PREDICATE_CODES): Remove.
* config/m32r/m32r.md: Include predicates.md.
* config/m32r/predicates.md: New.

From-SVN: r96691

19 years agore PR c++/20463 (ICE on using undefined type)
Paolo Carlini [Fri, 18 Mar 2005 17:19:42 +0000 (17:19 +0000)]
re PR c++/20463 (ICE on using undefined type)

2005-03-18  Paolo Carlini  <pcarlini@suse.de>

PR c++/20463
* g++.dg/template/crash35.C: New test.

From-SVN: r96690

19 years agore PR c++/20463 (ICE on using undefined type)
Paolo Carlini [Fri, 18 Mar 2005 17:16:16 +0000 (17:16 +0000)]
re PR c++/20463 (ICE on using undefined type)

2005-03-18  Paolo Carlini  <pcarlini@suse.de>

PR c++/20463
* parser.c (cp_parser_diagnose_invalid_type_name):
Check TYPE_BINFO (current_class_type) before attempting
to emit inform messages.

From-SVN: r96689

19 years agohooks.c, [...]: Update copyright.
Kazu Hirata [Fri, 18 Mar 2005 15:24:28 +0000 (15:24 +0000)]
hooks.c, [...]: Update copyright.

* hooks.c, hooks.h, intl.c, opts.h, prefix.c, tree-gimple.c,
config/alpha/ev4.md, config/alpha/ev5.md, config/alpha/ev6.md,
config/alpha/freebsd.h, config/alpha/linux.h,
config/alpha/netbsd.h, config/alpha/osf5.h,
config/alpha/vms.h, config/arc/arc.c, config/arc/arc.h,
config/h8300/h8300-protos.h, config/h8300/h8300.c,
config/h8300/h8300.h, config/ia64/unwind-ia64.c,
doc/cppopts.texi: Update copyright.

From-SVN: r96686

19 years agore PR middle-end/20225 (ICE during GC)
Jan Hubicka [Fri, 18 Mar 2005 14:57:10 +0000 (15:57 +0100)]
re PR middle-end/20225 (ICE during GC)

PR middle-end/20225
* cgraph.c (cgraph_mark_reachable_node): Assert that it is not called
too late.
* varasm.c (find_decl_and_mark_needed): Mark needed only when not
called too late.

From-SVN: r96685

19 years agotree-into-ssa.c (find_idf): Use VEC_quick_push instead of VEC_safe_push.
Kazu Hirata [Fri, 18 Mar 2005 14:02:26 +0000 (14:02 +0000)]
tree-into-ssa.c (find_idf): Use VEC_quick_push instead of VEC_safe_push.

* tree-into-ssa.c (find_idf): Use VEC_quick_push instead of
VEC_safe_push.

From-SVN: r96684

19 years agore PR java/20522 (ICE in update_aliases, at java/decl.c:163)
Andrew Haley [Fri, 18 Mar 2005 13:59:06 +0000 (13:59 +0000)]
re PR java/20522 (ICE in update_aliases, at java/decl.c:163)

2005-03-18  Andrew Haley  <aph@redhat.com>

        PR java/20522
        * decl.c (update_aliases): Don't update variables that are about
        to die.
        (maybe_poplevels): Add comment.

From-SVN: r96683

19 years agocombine.c (gen_binary): Remove.
Paolo Bonzini [Fri, 18 Mar 2005 13:52:33 +0000 (13:52 +0000)]
combine.c (gen_binary): Remove.

2005-03-01  Paolo Bonzini  <bonzini@gnu.org>

* combine.c (gen_binary): Remove.
(known_cond, simplify_shift_const, find_split_point,
combine_simplify_rtx, simplify_if_then_else, simplify_set,
simplify_logical, expand_field_assignment, extract_left_shift,
force_to_mode, if_then_else_cond, apply_distributive_law,
simplify_and_const_int, simplify_shift_const, gen_lowpart_for_combine,
simplify_comparison, reversed_comparison): Replace with
simplify_gen_binary, simplify_gen_relational or
distribute_and_simplify_rtx.
(distribute_and_simplify_rtx): New function.

From-SVN: r96681

19 years agoResync
Arnaud Charlet [Fri, 18 Mar 2005 11:56:44 +0000 (12:56 +0100)]
Resync

From-SVN: r96679

19 years ago[multiple changes]
Arnaud Charlet [Fri, 18 Mar 2005 11:55:47 +0000 (12:55 +0100)]
[multiple changes]

2005-03-17  Vasiliy Fofanov  <fofanov@adacore.com>

* gnat_ugn.texi: Document gnatmem restriction

2005-03-17  Thomas Quinot  <quinot@adacore.com>

* snames.adb: Document new TSS names introduced by exp_dist/exp_tss
cleanup

2005-03-17  Robert Dewar  <dewar@adacore.com>

* s-interr.ads, s-interr.adb, sem_ch3.adb, prj.ads, prj.adb,
a-interr.adb, a-interr.ads, s-interr-sigaction.adb, s-interr-dummy.adb,
s-interr-vms.adb, s-interr-vxworks.adb: Minor reformatting

* casing.adb: Comment improvements

2005-03-17  Pascal Obry  <obry@adacore.com>

* g-expect.adb: Minor reformatting.

From-SVN: r96678

19 years agoswitch-m.adb (Normalize_Compiler_Switches): Recognize switches -gnat83, -gnat95 and...
Vincent Celier [Fri, 18 Mar 2005 11:53:50 +0000 (12:53 +0100)]
switch-m.adb (Normalize_Compiler_Switches): Recognize switches -gnat83, -gnat95 and -gnat05.

2005-03-17  Vincent Celier  <celier@adacore.com>

* switch-m.adb (Normalize_Compiler_Switches): Recognize switches
-gnat83, -gnat95 and -gnat05.

From-SVN: r96677

19 years agomlib-tgt-darwin.adb (Build_Dynamic_Library): Remove the "-fini" switch, not supported...
Vincent Celier [Fri, 18 Mar 2005 11:53:34 +0000 (12:53 +0100)]
mlib-tgt-darwin.adb (Build_Dynamic_Library): Remove the "-fini" switch, not supported by the linker on Darwin.

2005-03-17  Vincent Celier  <celier@adacore.com>
    Nicolas Setton  <setton@adacore.com>

* mlib-tgt-darwin.adb (Build_Dynamic_Library): Remove the "-fini"
switch, not supported by the linker on Darwin. Add '_' before
<library>init, as this character is added unconditionally by the
compiler.
(Is_Archive_Ext): Replace the wrong library extension ".dyld" by the
correct one ".dylib". This fixes detection of the archive files when
building library projects.

From-SVN: r96676

19 years agos-taprob.adb (Initialize_Protection): Initialize the protected object's owner to...
Jose Ruiz [Fri, 18 Mar 2005 11:51:53 +0000 (12:51 +0100)]
s-taprob.adb (Initialize_Protection): Initialize the protected object's owner to Null_Task.

2005-03-17  Jose Ruiz  <ruiz@adacore.com>

* s-taprob.adb (Initialize_Protection): Initialize the protected
object's owner to Null_Task.
(Lock): If pragma Detect_Blocking is in effect and the caller of this
procedure is already the protected object's owner then Program_Error
is raised. In addition the protected object's owner is updated.
(Lock_Read_Only): If pragma Detect_Blocking is in effect and the caller
of this procedure is already the protected object's owner then
Program_Error is raised.
In addition the protected object's owner is updated.
(Unlock): Remove the ownership of the protected object.

* s-taprob.ads (Protection): Add the field Owner, used to store the
protected object's owner.
This component is needed for detecting one type of potentially blocking
operations (external calls on a protected subprogram with the same
target object as that of the protected action). Document the rest of
the components.

* s-tposen.adb, s-tpoben.adb (Initialize_Protection_Entries):
Initialize the protected object's owner to Null_Task.
(Lock_Read_Only_Entries): If pragma Detect_Blocking is in effect and the
caller of this procedure is already the protected object's owner then
Program_Error is raised.
Do not raise Program_Error when this procedure is called from a
protected action.
(Unlock_Entries): Remove the ownership of the protected object.
(Lock_Entries): If pragma Detect_Blocking is in effect and the caller
of this procedure is already the protected object's owner then
Program_Error is raised.
Do not raise Program_Error when this procedure is called from
a protected action.

* s-tposen.ads, s-tpoben.ads (Protection_Entries): Add the field Owner,
used to store the protected object's owner.

* s-tpobop.adb (Protected_Entry_Call): If pragma Detect_Blocking is in
effect and this procedure (a potentially blocking operation) is called
from whithin a protected action, Program_Error is raised.
(Timed_Protected_Entry_Call): If pragma Detect_Blocking is in effect
and this procedure (a potentially blocking operation) is called from
whithin a protected action, Program_Error is raised.

From-SVN: r96675

19 years agosem_ch4.adb (Try_Primitive_Operation, [...]): Analyze the object that is accessible...
Javier Miranda [Fri, 18 Mar 2005 11:51:32 +0000 (12:51 +0100)]
sem_ch4.adb (Try_Primitive_Operation, [...]): Analyze the object that is accessible through the prefix of the subprogram call...

2005-03-17  Javier Miranda  <miranda@adacore.com>

* sem_ch4.adb (Try_Primitive_Operation, Class_Wide_Operation and
Try_Object_Operation): Analyze the object that is accessible
through the prefix of the subprogram call before we apply
the transformation of the object-operation notation.

From-SVN: r96674

19 years agosem_ch13.adb (New_Stream_Function, [...]): For a tagged limited type, the TSS is...
Thomas Quinot [Fri, 18 Mar 2005 11:51:13 +0000 (12:51 +0100)]
sem_ch13.adb (New_Stream_Function, [...]): For a tagged limited type, the TSS is a newly built renaming declaration...

2005-03-17  Thomas Quinot  <quinot@adacore.com>

* sem_ch13.adb (New_Stream_Function, New_Stream_Procedure): For a
tagged limited type, the TSS is a newly built renaming declaration:
insert it using Set_TSS, not Copy_TSS.

From-SVN: r96673

19 years agopar.adb (Par): Improved msg for attempt to recompile predefined unit
Robert Dewar [Fri, 18 Mar 2005 11:50:53 +0000 (12:50 +0100)]
par.adb (Par): Improved msg for attempt to recompile predefined unit

2005-03-17  Robert Dewar  <dewar@adacore.com>

* par.adb (Par): Improved msg for attempt to recompile predefined unit

From-SVN: r96672

19 years agore PR ada/19519 (GNAT Bug Box when reading a program with UTF-8 encoded enumeration...
Robert Dewar [Fri, 18 Mar 2005 11:50:30 +0000 (12:50 +0100)]
re PR ada/19519 (GNAT Bug Box when reading a program with UTF-8 encoded enumeration literals)

2005-03-17  Robert Dewar  <dewar@adacore.com>

PR ada/19519

* namet.adb (Copy_One_Character): Set proper wide character encoding
for upper half character if we have upper half encoding.

From-SVN: r96671

19 years agoMakefile.in: (ia64-hp-*vms*): Use s-crtl-vms64.ads.
Doug Rupp [Fri, 18 Mar 2005 11:50:16 +0000 (12:50 +0100)]
Makefile.in: (ia64-hp-*vms*): Use s-crtl-vms64.ads.

2005-03-17  Doug Rupp  <rupp@adacore.com>

* Makefile.in: (ia64-hp-*vms*): Use s-crtl-vms64.ads.

        * 5xcrtl.ads: Renamed to...
        * s-crtl-vms64.ads: ...this new file

From-SVN: r96670

19 years agomake.adb (Insert_Project_Sources): Make sure the Q is always initialized.
Vincent Celier [Fri, 18 Mar 2005 11:49:51 +0000 (12:49 +0100)]
make.adb (Insert_Project_Sources): Make sure the Q is always initialized.

2005-03-17  Vincent Celier  <celier@adacore.com>

* make.adb (Insert_Project_Sources): Make sure the Q is always
initialized.

* prj-nmsc.adb (Check_Ada_Naming_Scheme_Validity): Check Naming against
the default for the tree, not the global default naming.

* prj-proc.adb (Recursive_Process): No need to put the default naming
in the project data, it's already there.

From-SVN: r96669

19 years agoexp_dist.adb (Get_PCS_Name): Move from Exp_Dist body to Sem_Dist spec...
Thomas Quinot [Fri, 18 Mar 2005 11:49:26 +0000 (12:49 +0100)]
exp_dist.adb (Get_PCS_Name): Move from Exp_Dist body to Sem_Dist spec...

2005-03-17  Thomas Quinot  <quinot@adacore.com>

* exp_dist.adb (Get_PCS_Name): Move from Exp_Dist body to Sem_Dist
spec, to make this predicate available to other units.

* rtsfind.adb (Check_RPC): Use Sem_Dist.Get_PCS_Name instead of
reimplementing it.

* sem_ch8.adb: Disable expansion of remote access-to-subprogram types
when no distribution runtime library is available.

* sem_res.adb, sem_dist.adb: Disable expansion of remote
access-to-subprogram types when no distribution runtime library is
available.
(Get_PCS_Name): Move from Exp_Dist body to Sem_Dist spec, to make this
predicate available to other units.

* sem_dist.ads (Get_PCS_Name): Move from Exp_Dist body to Sem_Dist
spec, to make this predicate available to other units.

From-SVN: r96668

19 years agoexp_ch6.adb (Expand_Inlined_Call): handle the case when the renamed entity is an...
Ed Schonberg [Fri, 18 Mar 2005 11:48:56 +0000 (12:48 +0100)]
exp_ch6.adb (Expand_Inlined_Call): handle the case when the renamed entity is an operator.

2005-03-17  Ed Schonberg  <schonberg@adacore.com>

* exp_ch6.adb (Expand_Inlined_Call): handle the case when the renamed
entity is an operator.

From-SVN: r96667

19 years agoexp_ch3.adb (Check_Attr): New subprogram.
Thomas Quinot [Fri, 18 Mar 2005 11:48:35 +0000 (12:48 +0100)]
exp_ch3.adb (Check_Attr): New subprogram.

2005-03-17  Thomas Quinot  <quinot@adacore.com>

* exp_ch3.adb (Check_Attr): New subprogram.
(Check_Stream_Attribute): Move the code for 13.13.2(9/1) enforcement
into a new Check_Attr subprogram, in order to provide a more
explanatory error message (including the name of the missing attribute).
(Stream_Operation_OK): Renamed from Stream_Operations_OK. This
subprogram determines whether a default implementation exists for a
given stream attribute.
(Make_Predefined_Primitive_Specs, Predefined_Primitive_Bodies):
Determine whether to generate a default implementation for each stream
attribute separately, as this depends on the specific attribute.

* exp_strm.adb (Make_Field_Attribute): For the case of an illegal
limited extension where a stream attribute is missing for a limited
component (which will have been flagged in Exp_Ch3.Sem_Attr), do not
generate a bogus reference to the missing attribute to prevent
cascaded errors. Instead, generate a null statement.

* sem_attr.adb (Check_Stream_Attribute): A stream attribute is
available for a limited type if it has been specified for an ancestor
of the type.

From-SVN: r96666

19 years agoexp_ch2.adb (In_Assignment_Context): Recognize slice assignments to entry formals.
Ed Schonberg [Fri, 18 Mar 2005 11:48:18 +0000 (12:48 +0100)]
exp_ch2.adb (In_Assignment_Context): Recognize slice assignments to entry formals.

2005-03-17  Ed Schonberg  <schonberg@adacore.com>

* exp_ch2.adb (In_Assignment_Context): Recognize slice assignments to
entry formals.

From-SVN: r96665

19 years agoeinfo.adb (First_Private_Entity, [...]): Addition of one barrier to avoid wrong usage...
Javier Miranda [Fri, 18 Mar 2005 11:48:05 +0000 (12:48 +0100)]
einfo.adb (First_Private_Entity, [...]): Addition of one barrier to avoid wrong usage of this attribute.

2005-03-17  Javier Miranda  <miranda@adacore.com>

* einfo.adb (First_Private_Entity, Set_First_Private_Entity): Addition
of one barrier to avoid wrong usage of this attribute.

* sem_ch12.adb (Formal_Entity): Fix erroneous usage of the attribute
First_Private_Entity.

* sem_ch7.adb (Install_Visible_Declarations): Add a barrier to protect
the subprogram against wrong usage.
Adapt the code to traverse the entities in the
scope of a record_type because in addition to its usage regarding
packages, this subprogram is also called by Expand_N_Freeze_Entity
to install the visible declarations of the enclosing scope of a
record_type_with_private to establish the proper visibility before
freezing the entity and related subprograms.

From-SVN: r96664

19 years agochecks.adb (Apply_Array_Size_Check): Completely remove this for GCC 3, since we now...
Robert Dewar [Fri, 18 Mar 2005 11:47:50 +0000 (12:47 +0100)]
checks.adb (Apply_Array_Size_Check): Completely remove this for GCC 3, since we now expect GCC 3 to do all the work.

2005-03-17  Robert Dewar  <dewar@adacore.com>

* checks.adb (Apply_Array_Size_Check): Completely remove this for GCC
3, since we now expect GCC 3 to do all the work.

From-SVN: r96663

19 years agoa-tags.ads, a-tags.adb (Get_Expanded_Name): Removed.
Javier Miranda [Fri, 18 Mar 2005 11:47:35 +0000 (12:47 +0100)]
a-tags.ads, a-tags.adb (Get_Expanded_Name): Removed.

2005-03-17  Javier Miranda  <miranda@adacore.com>

* a-tags.ads, a-tags.adb (Get_Expanded_Name): Removed.
(Get_Inheritance_Depth): Removed.
(Set_Inheritance_Depth): Removed.

* rtsfind.ads, exp_disp.ads, exp_disp.adb: Remove support to call the
subprogram Get_Expanded_Name because it is not referenced by the
frontend.

* i-cpp.ads, i-cpp.adb (CPP_Get_Expanded_Name): Removed.
(CPP_Get_Inheritance_Depth): Removed.
(CPP_Set_Inheritance_Depth): Removed.

* tbuild.ads, tbuild.adb (Make_DT_Component): Removed.

From-SVN: r96662

19 years ago* gcc_update: Add --silent option.
Zack Weinberg [Fri, 18 Mar 2005 11:47:28 +0000 (11:47 +0000)]
* gcc_update: Add --silent option.

From-SVN: r96661

19 years agoada-tree.h: (DECL_RENAMING_GLOBAL_P): New predicate.
Eric Botcazou [Fri, 18 Mar 2005 11:47:18 +0000 (12:47 +0100)]
ada-tree.h: (DECL_RENAMING_GLOBAL_P): New predicate.

2005-03-17  Eric Botcazou  <ebotcazou@adacore.com>

* ada-tree.h: (DECL_RENAMING_GLOBAL_P): New predicate.
(DECL_RENAMED_OBJECT): New accessor macro.
(SET_DECL_RENAMED_OBJECT): New setter macro.

* decl.c (gnat_to_gnu_entity) <E_Variable>: Stabilize the renamed
object in all cases.  Attach the renamed object to the VAR_DECL.
(gnat_to_gnu_field): Do not lift the record wrapper if the size of the
field is not prescribed.

* misc.c (gnat_handle_option): Handle -gnatO separately.
(gnat_print_decl) <VAR_DECL>: New case.
Print the DECL_RENAMED_OBJECT node.

* lang.opt:  Declare separate -gnatO option.

* trans.c (tree_transform) <N_Identifier>: If the object is a renaming
pointer, replace it with the renamed object.
<N_Validate_Unchecked_Conversion>: Warn for a conversion to a fat
pointer type if the source is not a fat pointer type whose underlying
array has the same non-zero alias set as that of the destination array.

From-SVN: r96660

19 years agoadaint.h, adaint.c (__gnat_waitpid): Moved to expect.c where it is used.
Pascal Obry [Fri, 18 Mar 2005 11:46:57 +0000 (12:46 +0100)]
adaint.h, adaint.c (__gnat_waitpid): Moved to expect.c where it is used.

2005-03-17  Pascal Obry  <obry@adacore.com>

* adaint.h, adaint.c (__gnat_waitpid): Moved to expect.c where it is
used.

* expect.c (__gnat_waitpid): Moved here from adaint.c.
Reimplement under Win32 using Win32 API.
(__gnat_kill) [Win32]: Properly close the process handle before leaving
this routine.

From-SVN: r96659

19 years agoPaolo Bonzini <gcc.gnu.org>
Alexey Neyman [Fri, 18 Mar 2005 10:42:16 +0000 (10:42 +0000)]
Paolo Bonzini <gcc.gnu.org>

2005-03-18  Alexey Neyman  <alex.neyman@auriga.ru>
    Paolo Bonzini  <gcc.gnu.org>

* calls.c (setjmp_call_p, special_function_p): Update comments
at the head of the functions.

From-SVN: r96656

19 years ago* tree-cfg.c (fold_cond_expr_cond): Use boolean types for condition.
Jan Hubicka [Fri, 18 Mar 2005 10:09:51 +0000 (11:09 +0100)]
* tree-cfg.c (fold_cond_expr_cond): Use boolean types for condition.

From-SVN: r96655

19 years agocgraph.c (cgraph_remove_node): Avoid loop in code deciding whether function body...
Jan Hubicka [Fri, 18 Mar 2005 10:00:53 +0000 (11:00 +0100)]
cgraph.c (cgraph_remove_node): Avoid loop in code deciding whether function body should be released...

* cgraph.c (cgraph_remove_node): Avoid loop in code deciding whether
function body should be released; do not proactively release function
bodies in non-unit-at-a-time mode.

From-SVN: r96654

19 years agot-rtems-i386 (MULTILIBS): Remove k6, athlon, mno-fp-ret-in-387 multilib variants.
Ralf Corsepius [Fri, 18 Mar 2005 09:13:25 +0000 (10:13 +0100)]
t-rtems-i386 (MULTILIBS): Remove k6, athlon, mno-fp-ret-in-387 multilib variants.

2005-03-18  Ralf Corsepius  <ralf.corsepius@rtems.org>

* config/i386/t-rtems-i386 (MULTILIBS): Remove k6, athlon,
mno-fp-ret-in-387 multilib variants.

From-SVN: r96651

19 years agocommon.opt (m): Remove.
Richard Sandiford [Fri, 18 Mar 2005 08:01:21 +0000 (08:01 +0000)]
common.opt (m): Remove.

* common.opt (m): Remove.
* opts.c (handle_option): Pass 'm' options to set_target_switch if
table lookup fails.
(common_handle_option): Remove OPT_m case.

From-SVN: r96650

19 years agobuiltins.c (fold_builtin_signbit): Take decomposed arguments of CALL_EXPR.
Kazu Hirata [Fri, 18 Mar 2005 03:45:51 +0000 (03:45 +0000)]
builtins.c (fold_builtin_signbit): Take decomposed arguments of CALL_EXPR.

* builtins.c (fold_builtin_signbit): Take decomposed arguments
of CALL_EXPR.
(fold_builtin_1): Update a call to fold_builtin_signbit.

From-SVN: r96649

19 years agobuiltins.c (fold_builtin_bitop): Take decomposed arguments of CALL_EXPR.
Kazu Hirata [Fri, 18 Mar 2005 03:44:21 +0000 (03:44 +0000)]
builtins.c (fold_builtin_bitop): Take decomposed arguments of CALL_EXPR.

* builtins.c (fold_builtin_bitop): Take decomposed arguments
of CALL_EXPR.
(fold_builtin_1): Update a call to fold_builtin_bitop.

From-SVN: r96648

19 years agoFix typos.
Mike Stump [Fri, 18 Mar 2005 01:17:30 +0000 (01:17 +0000)]
Fix typos.

From-SVN: r96646

19 years agoFix typos.
Mike Stump [Fri, 18 Mar 2005 01:13:39 +0000 (01:13 +0000)]
Fix typos.

From-SVN: r96645

19 years agoDaily bump.
GCC Administrator [Fri, 18 Mar 2005 00:16:32 +0000 (00:16 +0000)]
Daily bump.

[[Split portion of a mixed commit.]]

From-SVN: r96641.2

19 years agotrans-array.c (gfc_trans_static_array_pointer, [...]): Fix comment and formatting...
Tobias Schlüter [Thu, 17 Mar 2005 21:55:12 +0000 (22:55 +0100)]
trans-array.c (gfc_trans_static_array_pointer, [...]): Fix comment and formatting typos.

* trans-array.c (gfc_trans_static_array_pointer,
get_array_ctor_var_strlen, gfc_conv_array_index_offset): Fix
comment and formatting typos.

From-SVN: r96635

19 years agore PR tree-optimization/20474 (ICE while compiling openmotif-2.2.3 with -ftree-vectorize)
Dorit Naishlos [Thu, 17 Mar 2005 21:08:06 +0000 (21:08 +0000)]
re PR tree-optimization/20474 (ICE while compiling openmotif-2.2.3 with -ftree-vectorize)

        PR tree-optimization/20474
        * tree-vect-analyze.c (vect_analyze_pointer_ref_access): Check the
        size_type of the relevant pointer. Check for COMPLETE_TYPE_P.

From-SVN: r96632

19 years agoh8300-protos.h: Remove prototypes for general_operand_src...
Kazu Hirata [Thu, 17 Mar 2005 21:01:34 +0000 (21:01 +0000)]
h8300-protos.h: Remove prototypes for general_operand_src...

* config/h8300/h8300-protos.h: Remove prototypes for
general_operand_src, general_operand_dst, single_one_operand,
single_zero_operand, call_insn_operand,
two_insn_adds_subs_operand, small_call_insn_operand,
jump_address_operand, bit_operand, bit_memory_operand,
stack_pointer_operand, const_int_gt_2_operand,
const_int_ge_8_operand, const_int_qi_operand,
const_int_hi_operand, incdec_operand, bit_operator,
nshift_operator, eqne_operator, gtle_operator,
gtuleu_operator, iorxor_operator.
Add prototypes for h8sx_shift_type h8sx_classify_shift and
h8300_ldm_stm_parallel.
* config/h8300/h8300.c (h8sx_shift_type,): Move to
h8300-protos.h.
(SYMBOL_FLAG_FUNCVEC_FUNCTION, SYMBOL_FLAG_EIGHTBIT_DATA,
SYMBOL_FLAG_TINY_DATA): Move to h8300.h.
(h8300_ldm_stm_parallel): Make it extern.
(h8300_ldm_parallel, h8300_stm_parallel,
h8300_return_parallel, general_operand_src,
general_operand_dst, h8300_dst_operand, h8300_src_operand,
nibble_operand, reg_or_nibble_operand, single_one_operand,
single_zero_operand, call_insn_operand,
two_insn_adds_subs_operand, small_call_insn_operand,
jump_address_operand, bit_operand, bit_memory_operand,
stack_pointer_operand, const_int_gt_2_operand,
const_int_ge_8_operand, const_int_qi_operand,
const_int_hi_operand, incdec_operand, eqne_operator,
gtle_operator, gtuleu_operator, iorxor_operator, bit_operator,
h8sx_binary_memory_operator, h8sx_unary_memory_operator,
h8sx_unary_shift_operator, h8sx_binary_shift_operator,
nshift_operator): Move to predicates.md.
* config/h8300/h8300.h (PREDICATE_CODES): Remove.
* config/h8300/h8300.md: Include predicates.md.
* config/h8300/predicates.md: New.

From-SVN: r96631

19 years ago* invoke.texi: Fix typos.
François-Xavier Coudert [Thu, 17 Mar 2005 19:58:09 +0000 (19:58 +0000)]
* invoke.texi: Fix typos.

From-SVN: r96630

19 years ago* invoke.texi: Fix typos.
François-Xavier Coudert [Thu, 17 Mar 2005 19:55:51 +0000 (19:55 +0000)]
* invoke.texi: Fix typos.

From-SVN: r96627

19 years agoFix entry.
Eric Botcazou [Thu, 17 Mar 2005 18:28:58 +0000 (18:28 +0000)]
Fix entry.

From-SVN: r96623

19 years agoconfig.gcc (ia64*-*-hpux*): Add extra_options.
Richard Henderson [Thu, 17 Mar 2005 17:35:16 +0000 (09:35 -0800)]
config.gcc (ia64*-*-hpux*): Add extra_options.

        * config.gcc (ia64*-*-hpux*): Add extra_options.
        * config/ia64/hpux.h (SUBTARGET_SWITCHES): Remove.
        (TARGET_DEFAULT): Remove MASK_INLINE_FLOAT_DIV_THR.
        * config/ia64/ia64.c (ia64_fixed_range_string): Remove.
        (ia64_tls_size_string, ia64_tune_string): Remove.
        (ia64_tune): Init to PROCESSOR_ITANIUM2.
        (TARGET_DEFAULT_TARGET_FLAGS): New.
        (TARGET_HANDLE_OPTION): New.
        (ia64_override_options): Move options parsing ...
        (ia64_handle_option): ... here.  New.
        * config/ia64/ia64.h (target_flags, MASK_BIG_ENDIAN, MASK_GNU_AS,
        MASK_GNU_LD, MASK_NO_PIC, MASK_VOL_ASM_STOP, MASK_ILP32,
        MASK_REG_NAMES, MASK_NO_SDATA, MASK_CONST_GP, MASK_AUTO_PIC,
        MASK_INLINE_FLOAT_DIV_LAT, MASK_INLINE_FLOAT_DIV_THR,
        MASK_INLINE_INT_DIV_LAT, MASK_INLINE_INT_DIV_THR,
        MASK_INLINE_SQRT_LAT, MASK_INLINE_SQRT_THR, MASK_DWARF2_ASM,
        MASK_EARLY_STOP_BITS, TARGET_BIG_ENDIAN, TARGET_GNU_AS, TARGET_GNU_LD,
        TARGET_NO_PIC, TARGET_VOL_ASM_STOP, TARGET_ILP32, TARGET_REG_NAMES,
        TARGET_NO_SDATA, TARGET_CONST_GP, TARGET_AUTO_PIC,
        TARGET_INLINE_FLOAT_DIV_LAT, TARGET_INLINE_FLOAT_DIV_THR,
        TARGET_INLINE_INT_DIV_LAT, TARGET_INLINE_INT_DIV_THR,
        TARGET_INLINE_FLOAT_DIV, TARGET_INLINE_INT_DIV, TARGET_INLINE_SQRT_LAT,
        TARGET_INLINE_SQRT_THR, TARGET_INLINE_SQRT, TARGET_DWARF2_ASM,
        TARGET_EARLY_STOP_BITS): Remove.
        (TARGET_ILP32): Default false.
        (TARGET_SWITCHES, SUBTARGET_SWITCHES, TARGET_OPTIONS): Remove.
        (enum ia64_inline_type): New.
        (TARGET_DEFAULT): Remove MASK_INLINE_FLOAT_DIV_THR.
        * config/ia64/ia64.md: Update for new definitions of
        TARGET_INLINE_INT_DIV, TARGET_INLINE_FLOAT_DIV, TARGET_INLINE_SQRT.
        * config/ia64/ia64.opt: New file.
        * config/ia64/ilp32.opt: New file.

From-SVN: r96621

19 years agomf-runtime.c (__mfu_check): Respect ignore_reads configuration.
Frank Ch. Eigler [Thu, 17 Mar 2005 17:20:49 +0000 (17:20 +0000)]
mf-runtime.c (__mfu_check): Respect ignore_reads configuration.

2005-03-17  Frank Ch. Eigler  <fche@redhat.com>

* mf-runtime.c (__mfu_check): Respect ignore_reads configuration.
* testsuite/libmudflap.c/{pass56,fail39}-frag.c: New tests.

From-SVN: r96620

19 years agore PR target/18380 (_Unwind_FindTableEntry shouldn't be exported from libunwind.so.7)
H.J. Lu [Thu, 17 Mar 2005 16:52:47 +0000 (16:52 +0000)]
re PR target/18380 (_Unwind_FindTableEntry shouldn't be exported from libunwind.so.7)

2005-03-17  H.J. Lu  <hongjiu.lu@intel.com>

PR target/18380
* config/ia64/unwind-ia64.c (_Unwind_FindTableEntry): Removed.

From-SVN: r96619

19 years agoalpha.opt, [...]: Add copyright notices.
Kazu Hirata [Thu, 17 Mar 2005 15:59:09 +0000 (15:59 +0000)]
alpha.opt, [...]: Add copyright notices.

* config/alpha/alpha.opt, config/arc/arc.opt,
config/h8300/h8300.opt, config/mips/mips.opt: Add copyright
notices.

From-SVN: r96618

19 years agore PR java/20502 (gcj failure if .jar contains same .class twice)
Bryce McKinlay [Thu, 17 Mar 2005 15:54:20 +0000 (15:54 +0000)]
re PR java/20502 (gcj failure if .jar contains same .class twice)

2005-03-17  Bryce McKinlay  <mckinlay@redhat.com>

PR java/20502
* jcf-parse.c (duplicate_class_warning): New function.
(java_parse_file): Call duplicate_class_warning if
CLASS_FROM_CURRENTLY_COMPILED_P is already set.
(parse_zip_file_entries): Likewise. Also set
CLASS_FROM_CURRENTLY_COMPILED_P.

From-SVN: r96617

19 years agoh8300.c (h8300_init_once): Use MASK_H8300S_1 instead of MASK_H8300S.
Kazu Hirata [Thu, 17 Mar 2005 15:38:58 +0000 (15:38 +0000)]
h8300.c (h8300_init_once): Use MASK_H8300S_1 instead of MASK_H8300S.

* config/h8300/h8300.c (h8300_init_once): Use MASK_H8300S_1
instead of MASK_H8300S.
* config/h8300/h8300.h (target_flags, MASK_H8300S, MASK_MAC,
MASK_INT32, MASK_ADDRESSES, MASK_QUICKCALL, MASK_SLOWBYTE,
MASK_NORMAL_MODE, MASK_RELAX, MASK_H8300H, MASK_ALIGN_300,
MASK_H8300SX, TARGET_INT32, TARGET_ADDRESSES,
TARGET_QUICKCALL, TARGET_SLOWBYTE, TARGET_H8300H,
TARGET_H8300XS, TARGET_NORMAL_MODE, TARGET_ALIGN_300,
TARGET_SWITCHES): Remove.
(TARGET_H8300S): Redefine interms of TARGET_H8300S_1 and
TARGET_H8300SX.
* config/h8300/h8300.opt: New.

From-SVN: r96616

19 years agoexpr.c (expand_java_arrayload): Don't generate a NullPointerException based on the...
Andrew Haley [Thu, 17 Mar 2005 14:43:26 +0000 (14:43 +0000)]
expr.c (expand_java_arrayload): Don't generate a NullPointerException based on the type of the node.

2005-03-16  Andrew Haley  <aph@redhat.com>

        * expr.c (expand_java_arrayload): Don't generate a
        NullPointerException based on the type of the node.
        (build_java_array_length_access): Likewise.

From-SVN: r96611