OSDN Git Service

pf3gnuchains/gcc-fork.git
16 years agoAdd missing test from last commit
dberlin [Mon, 2 Jul 2007 04:55:48 +0000 (04:55 +0000)]
Add missing test from last commit
Fixup two existing C++ tests for SCCVN changes

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

16 years ago2007-07-01 Daniel Berlin <dberlin@dberlin.org>
dberlin [Mon, 2 Jul 2007 04:35:37 +0000 (04:35 +0000)]
2007-07-01  Daniel Berlin  <dberlin@dberlin.org>

Fix PR tree-optimization/32571
* tree-ssa-sccvn.c (visit_use): Shortcut copies to avoid
simplifying them.

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

16 years ago2007-07-01 Christopher D. Rickett <crickett@lanl.gov>
kargl [Mon, 2 Jul 2007 02:47:21 +0000 (02:47 +0000)]
2007-07-01  Christopher D. Rickett  <crickett@lanl.gov>

* interface.c (gfc_compare_derived_types): Special case for comparing
derived types across namespaces.
(gfc_compare_types): Deal with BT_VOID.
(compare_parameter): Use BT_VOID to accept ISO C Binding pointers.
* trans-expr.c (gfc_conv_function_call): Remove setting parm_kind
to SCALAR
(gfc_conv_initializer): Deal with ISO C Binding NULL_PTR and
NULL_FUNPTR.
(gfc_conv_expr): Convert expressions for ISO C Binding derived types.
* symbol.c (gfc_set_default_type): BIND(C) variables should not be
implicitly declared.
(check_conflict): Add BIND(C) and check for conflicts.
(gfc_add_explicit_interface): Whitespace.
(gfc_add_is_bind_c): New function.
(gfc_copy_attr): Use it.
(gfc_new_symbol): Initialize ISO C Binding objects.
(get_iso_c_binding_dt):  New function.
(verify_bind_c_derived_type): Ditto.
(gen_special_c_interop_ptr): Ditto.
(add_formal_arg): Ditto.
(gen_cptr_param): Ditto.
(gen_fptr_param): Ditto.
(gen_shape_param): Ditto.
(add_proc_interface): Ditto.
(build_formal_args): Ditto.
(generate_isocbinding_symbol):  Ditto.
(get_iso_c_sym):  Ditto.
* decl.c (num_idents_on_line, has_name_equals): New variables.
(verify_c_interop_param): New function.
(build_sym): Finish binding labels and deal with COMMON blocks.
(add_init_expr_to_sym): Check if the initialized expression is
an iso_c_binding named constants
(variable_decl): Set ISO C Binding type_spec components.
(gfc_match_kind_spec): Check match for C interoperable kind.
(match_char_spec): Fix comment. Chnage gfc_match_small_int
to gfc_match_small_int_expr.  Check for C interoperable kind.
(match_type_spec): Clear the current binding label.
(match_attr_spec): Add DECL_IS_BIND_C.  If BIND(C) is found, use it
to set attributes.
(set_binding_label): New function.
(set_com_block_bind_c): Ditto.
(verify_c_interop): Ditto.
(verify_com_block_vars_c_interop): Ditto.
(verify_bind_c_sym): Ditto.
(set_verify_bind_c_sym): Ditto.
(set_verify_bind_c_com_block): Ditto.
(get_bind_c_idents): Ditto.
(gfc_match_bind_c_stmt): Ditto.
(gfc_match_data_decl): Use num_idents_on_line.
(match_result): Deal with right paren in BIND(C).
(gfc_match_suffix): New function.
(gfc_match_function_decl): Use it.  Code is re-arranged to deal with
ISO C Binding result clauses.
(gfc_match_subroutine):  Deal with BIND(C).
  (gfc_match_bind_c): New function.
(gfc_get_type_attr_spec): New function.  Code is re-arranged in and
taken from gfc_match_derived_decl.
(gfc_match_derived_decl): Add check for BIND(C).
* trans-common.c: Forward declare gfc_get_common.
(gfc_sym_mangled_common_id): Change arg from 'const char *name' to
'gfc_common_head *com'.  Check for ISO C Binding of the common block.
(build_common_decl): 'com->name' to 'com in SET_DECL_ASSEMBLER_NAME.
* gfortran.h: Add GFC_MAX_BINDING_LABEL_LEN
(bt): Add BT_VOID
(sym_flavor): Add FL_VOID.
  (iso_fortran_env_symbol, iso_c_binding_symbol, intmod_id): New enum
(CInteropKind_t): New struct.
(c_interop_kinds_table): Use it.  Declare an array of structs.
(symbol_attribute): Add is_bind_c, is_c_interop, and is_iso_c
bitfields.
(gfc_typespec): Add is_c_interop; is_iso_c, and f90_type members.
(gfc_symbol): Add from_intmod, intmod_sym_id, binding_label, and
common_block members.
(gfc_common_head): Add binding_label and is_bind_c members.
(gfc_gsymbol): Add sym_name, mod_name, and binding_label members.
Add prototypes for get_c_kind, gfc_validate_c_kind,
gfc_check_any_c_kind, gfc_add_is_bind_c, gfc_add_value,
verify_c_interop, verify_c_interop_param, verify_bind_c_sym,
verify_bind_c_derived_type, verify_com_block_vars_c_interop,
generate_isocbinding_symbol, get_iso_c_sym, gfc_iso_c_sub_interface
* iso-c-binding.def: New file. This file contains the definitions
of the types provided by the Fortran 2003 ISO_C_BINDING intrinsic
module.
* trans-const.c (gfc_conv_constant_to_tree): Deal with C_NULL_PTR
 or C_NULL_FUNPTR expressions.
* expr.c (gfc_copy_expr): Add BT_VOID case.  For BT_CHARACTER, the
ISO C Binding requires a minimum string length of 1 for '\0'.
* module.c (intmod_sym): New struct.
(pointer_info): Add binding_label member.
(write_atom): Set len to 0 for NULL pointers. Check for NULL p and *p.
(ab_attribute): Add AB_IS_BIND_C, AB_IS_C_INTEROP and AB_IS_ISO_C.
(attr_bits): Add "IS_BIND_C", "IS_C_INTEROP", and "IS_ISO_C".
(mio_symbol_attribute): Deal with ISO C Binding attributes.
(bt_types): Add "VOID".
(mio_typespec): Deal with ISO C Binding components.
(mio_namespace_ref): Add intmod variable.
(mio_symbol): Check for symbols from an intrinsic module.
(load_commons): Check for BIND(C) common block.
(read_module): Read binding_label and use it.
(write_common): Add label.  Write BIND(C) info.
(write_blank_common): Blank commons are not BIND(C).  Explicitly
set is_bind_c=0.
(write_symbol): Deal with binding_label.
(sort_iso_c_rename_list): New function.
(import_iso_c_binding_module): Ditto.
(create_int_parameter): Add to args.
(use_iso_fortran_env_module): Adjust to deal with iso_c_binding
intrinsic module.
* trans-types.c (c_interop_kinds_table): new array of structs.
(gfc_validate_c_kind): New function.
(gfc_check_any_c_kind): Ditto.
(get_real_kind_from_node): Ditto.
(get_int_kind_from_node): Ditto.
(get_int_kind_from_width): Ditto.
(get_int_kind_from_minimal_width): Ditto.
(init_c_interop_kinds): Ditto.
(gfc_init_kinds): call init_c_interop_kinds.
(gfc_typenode_for_spec): Adjust for BT_VOID and ISO C Binding pointers.
Adjust handling of BT_DERIVED.
(gfc_sym_type): Whitespace.
(gfc_get_derived_type):  Account for iso_c_binding derived types
* resolve.c (is_scalar_expr_ptr): New function.
(gfc_iso_c_func_interface): Ditto.
(resolve_function): Use gfc_iso_c_func_interface.
(set_name_and_label): New function.
(gfc_iso_c_sub_interface): Ditto.
(resolve_specific_s0): Use gfc_iso_c_sub_interface.
(resolve_bind_c_comms): New function.
(resolve_bind_c_derived_types): Ditto.
(gfc_verify_binding_labels): Ditto.
(resolve_fl_procedure): Check for ISO C interoperability.
(resolve_symbol): Check C interoperability.
(resolve_types): Walk the namespace.  Check COMMON blocks.
* trans-decl.c (gfc_sym_mangled_identifier):  Prevent the mangling
of identifiers that have an assigned binding label.
(gfc_sym_mangled_function_id): Use the binding label rather than
the mangled name.
(gfc_finish_var_decl): Put variables that are BIND(C) into a common
segment of the object file, because this is what C would do.
(gfc_create_module_variable): Conver to proper types
(set_tree_decl_type_code): New function.
(generate_local_decl): Check dummy variables and derived types for
ISO C Binding attributes.
* match.c (gfc_match_small_int_expr): New function.
(gfc_match_name_C): Ditto.
(match_common_name): Deal with ISO C Binding in COMMON blocks
* trans-io.c (transfer_expr):  Deal with C_NULL_PTR or C_NULL_FUNPTR
expressions
* match.h: Add prototypes for gfc_match_small_int_expr,
gfc_match_name_C, match_common_name, set_com_block_bind_c,
set_binding_label, set_verify_bind_c_sym,
set_verify_bind_c_com_block, get_bind_c_idents,
gfc_match_bind_c_stmt, gfc_match_suffix, gfc_match_bind_c,
gfc_get_type_attr_spec
* parse.c (decode_statement): Use gfc_match_bind_c_stmt
(parse_derived): Init *derived_sym = NULL, and gfc_current_block
later for valiadation.
* primary.c (got_delim): Set ISO C Binding components of ts.
(match_logical_constant): Ditto.
(match_complex_constant): Ditto.
(match_complex_constant): Ditto.
(gfc_match_rvalue): Check for existence of at least one arg for
C_LOC, C_FUNLOC, and C_ASSOCIATED.
* misc.c (gfc_clear_ts): Clear ISO C Bindoing components in ts.
(get_c_kind): New function.

2007-07-01  Christopher D. Rickett  <crickett@lanl.gov>

* Makefile.in: Add support for iso_c_generated_procs.c and
iso_c_binding.c.
* Makefile.am: Ditto.
* intrinsics/iso_c_generated_procs.c: New file containing helper
functions.
* intrinsics/iso_c_binding.c: Ditto.
* intrinsics/iso_c_binding.h: New file
* gfortran.map: Include the __iso_c_binding_c_* functions.
* libgfortran.h: define GFC_NUM_RANK_BITS.

2007-06-23  Christopher D. Rickett  <crickett@lanl.gov>

* bind_c_array_params.f03: New files for Fortran 2003 ISO C Binding.
* bind_c_coms.f90: Ditto.
* bind_c_coms_driver.c: Ditto.
* bind_c_dts.f90: Ditto.
* bind_c_dts_2.f03: Ditto.
* bind_c_dts_2_driver.c: Ditto.
* bind_c_dts_3.f03: Ditto.
* bind_c_dts_4.f03: Ditto.
* bind_c_dts_driver.c: Ditto.
* bind_c_implicit_vars.f03: Ditto.
* bind_c_procs.f03: Ditto.
* bind_c_usage_2.f03: Ditto.
* bind_c_usage_3.f03: Ditto.
* bind_c_usage_5.f03: Ditto.
* bind_c_usage_6.f03: Ditto.
* bind_c_usage_7.f03: Ditto.
* bind_c_vars.f90: Ditto.
* bind_c_vars_driver.c: Ditto.
* binding_c_table_15_1.f03: Ditto.
* binding_label_tests.f03: Ditto.
* binding_label_tests_10.f03: Ditto.
* binding_label_tests_10_main.f03: Ditto.
* binding_label_tests_11.f03: Ditto.
* binding_label_tests_11_main.f03: Ditto.
* binding_label_tests_12.f03: Ditto.
* binding_label_tests_13.f03: Ditto.
* binding_label_tests_13_main.f03: Ditto.
* binding_label_tests_14.f03: Ditto.
* binding_label_tests_2.f03: Ditto.
* binding_label_tests_3.f03: Ditto.
* binding_label_tests_4.f03: Ditto.
* binding_label_tests_5.f03: Ditto.
* binding_label_tests_6.f03: Ditto.
* binding_label_tests_7.f03: Ditto.
* binding_label_tests_8.f03: Ditto.
* binding_label_tests_9.f03: Ditto.
* c_assoc.f90: Ditto.
* c_assoc_2.f03: Ditto.
* c_f_pointer_shape_test.f90: Ditto.
* c_f_pointer_tests.f90: Ditto.
* c_f_tests_driver.c: Ditto.
* c_funloc_tests.f03: Ditto.
* c_funloc_tests_2.f03: Ditto.
* c_funloc_tests_3.f03: Ditto.
* c_funloc_tests_3_funcs.c: Ditto.
* c_kind_params.f90: Ditto.
* c_kind_tests_2.f03: Ditto.
* c_kinds.c: Ditto.
* c_loc_driver.c: Ditto.
* c_loc_test.f90: Ditto.
* c_loc_tests_2.f03: Ditto.
* c_loc_tests_2_funcs.c: Ditto.
* c_loc_tests_3.f03: Ditto.
* c_loc_tests_4.f03: Ditto.
* c_loc_tests_5.f03: Ditto.
* c_loc_tests_6.f03: Ditto.
* c_loc_tests_7.f03: Ditto.
* c_loc_tests_8.f03: Ditto.
* c_ptr_tests.f03: Ditto.
* c_ptr_tests_10.f03: Ditto.
* c_ptr_tests_5.f03: Ditto.
* c_ptr_tests_7.f03: Ditto.
* c_ptr_tests_7_driver.c: Ditto.
* c_ptr_tests_8.f03: Ditto.
* c_ptr_tests_8_funcs.c: Ditto.
* c_ptr_tests_9.f03: Ditto.
* c_ptr_tests_driver.c: Ditto.
* c_size_t_driver.c: Ditto.
* c_size_t_test.f03: Ditto.
* com_block_driver.f90: Ditto.
* global_vars_c_init.f90: Ditto.
* global_vars_c_init_driver.c: Ditto.
* global_vars_f90_init.f90: Ditto.
* global_vars_f90_init_driver.c: Ditto.
* interop_params.f03: Ditto.
* iso_c_binding_only.f03: Ditto.
* iso_c_binding_rename_1.f03: Ditto.
* iso_c_binding_rename_1_driver.c: Ditto.
* iso_c_binding_rename_2.f03: Ditto.
* iso_c_binding_rename_2_driver.c: Ditto.
* kind_tests_2.f03: Ditto.
* kind_tests_3.f03: Ditto.
* module_md5_1.f90: Ditto.
* only_clause_main.c: Ditto.
* print_c_kinds.f90: Ditto.
* test_bind_c_parens.f03: Ditto.
* test_c_assoc.c: Ditto.
* test_com_block.f90: Ditto.
* test_common_binding_labels.f03: Ditto.
* test_common_binding_labels_2.f03: Ditto.
* test_common_binding_labels_2_main.f03: Ditto.
* test_common_binding_labels_3.f03: Ditto.
* test_common_binding_labels_3_main.f03: Ditto.
* test_only_clause.f90: Ditto.
* use_iso_c_binding.f90: Ditto.
* value_5.f90: Ditto.
* value_test.f90: Ditto.
* value_tests_f03.f90: Ditto.

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

16 years ago2007-07-01 Douglas Gregor <doug.gregor@gmail.com>
dgregor [Mon, 2 Jul 2007 02:33:26 +0000 (02:33 +0000)]
2007-07-01  Douglas Gregor  <doug.gregor@gmail.com>

* include/std/type_traits (__make_unsigned): Remove invalid
wchar_t specialization.
(__make_signed): Remove invalid wchar_t specialization.

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

16 years agoDaily bump.
gccadmin [Mon, 2 Jul 2007 00:17:06 +0000 (00:17 +0000)]
Daily bump.

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

16 years ago2007-07-01 Daniel Berlin <dberlin@dberlin.org>
dberlin [Sun, 1 Jul 2007 23:41:38 +0000 (23:41 +0000)]
2007-07-01  Daniel Berlin  <dberlin@dberlin.org>

* tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle constants
and ohter expected operations explicitly, change default to
gcc_unreachable.

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

16 years ago * config/arm/arm.c (arm_cannot_copy_insn_p): Do not expect a
drow [Sun, 1 Jul 2007 21:15:14 +0000 (21:15 +0000)]
* config/arm/arm.c (arm_cannot_copy_insn_p): Do not expect a
PARALLEL.
* config/arm/arm.md (pic_add_dot_plus_four, pic_add_dot_plus_eight)
(tls_load_dot_plus_eight): Move the label number into the unspec.
* config/arm/thumb2.md (pic_load_dot_plus_four): Likewise.

* gcc.dg/tls/opt-14.c: New.

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

16 years ago * name-lookup.c (ambiguous_decl): Fix case when new->value is hidden.
aaw [Sun, 1 Jul 2007 20:49:29 +0000 (20:49 +0000)]
* name-lookup.c (ambiguous_decl): Fix case when new->value is hidden.
(select_decl): Remove function.
(unqualified_namespace_lookup): Populate binding by calling
ambiguous_decl.  Remove select_decl call.
(lookup_qualified_name): Remove select_decl call.
* decl.c (lookup_and_check_tag): Check for ambiguous references.
* parser.c (cp_parser_elaborated_type_specifier): Skip redundant error
generation when name lookup is ambiguous.

* g++.dg/lookup/using16.C: New test.
* g++.dg/lookup/using17.C: New test.

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

16 years agogcc/fortran:
jb [Sun, 1 Jul 2007 16:24:38 +0000 (16:24 +0000)]
gcc/fortran:

2007-07-01  Janne Blomqvist  <jb@gcc.gnu.org>

PR fortran/32239
* trans-expr.c (gfc_conv_power_op): Use builtin_powi for
real**int4 powers.
* f95-lang.c (gfc_init_builtin_functions): Add builtin_powi to the
builtins table.

libgfortran:

2007-07-01  Janne Blomqvist  <jb@gcc.gnu.org>

PR fortran/32239
* Makefile.am: Don't generate real**int4 pow functions.
* gfortran.map: Remove real**int4 pow symbols.
* Makefile.in: Regenerated.

testsuite

2007-07-01  Janne Blomqvist  <jb@gcc.gnu.org>

PR fortran/32239
* gfortran.fortran-torture/execute/intrinsic_fraction_exponent.f90
(test_4): Use proper test for floating point equality.
(test_8): Likewise.

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

16 years ago2007-06-29 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Sun, 1 Jul 2007 15:49:37 +0000 (15:49 +0000)]
2007-06-29  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR libgfortran/32554
* gfortran.dg/fmt_p_1.f90: New test.

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

16 years ago2007-07-01 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Sun, 1 Jul 2007 15:46:33 +0000 (15:46 +0000)]
2007-07-01  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR libgfortran/32554
* io/write.c (output_float): Set edigits to a fixed size, avoiding
variation in field width calculation and eliminate buffer overrun.

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

16 years ago * dwarf2out.c (initial_return_save): Define only if used.
schwab [Sun, 1 Jul 2007 15:28:34 +0000 (15:28 +0000)]
* dwarf2out.c (initial_return_save): Define only if used.

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

16 years ago2007-07-01 Richard Sandiford <richard@codesourcery.com>
zadeck [Sun, 1 Jul 2007 14:43:47 +0000 (14:43 +0000)]
2007-07-01  Richard Sandiford  <richard@codesourcery.com>

Unreverting Richard's Revert of:

2007-06-27  Richard Sandiford  <richard@codesourcery.com>

* dce.c (deletable_insn_p_1): New function, split out from...
(deletable_insn_p): ...here.  Only treat bare USEs and CLOBBERs
specially, not those inside PARALLELs.  Remove BODY argument
and adjust recursive call accordingly.
(prescan_insns_for_dce): Update call to delete_insn_p.

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

16 years agoFix missed initialization of scc_nodes.
revitale [Sun, 1 Jul 2007 14:03:51 +0000 (14:03 +0000)]
Fix missed initialization of scc_nodes.

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

16 years agofortran frontend:
jb [Sun, 1 Jul 2007 12:08:59 +0000 (12:08 +0000)]
fortran frontend:

2007-07-01  Janne Blomqvist  <jb@gcc.gnu.org>

* trans.h: Remove decls for 64-bit allocation functions.
* trans-array.c (gfc_grow_array): Always pick the standard realloc
function decl.
(gfc_array_allocate): Likewise.
* trans-decl.c: Remove trees for 64-bit allocation functions.
(gfc_build_builtin_function_decls): Don't build fndecls for 64-bit
allocations functions, use index_int_type for normal allocation
functions.

libgfortran changelog:

2007-07-01  Janne Blomqvist  <jb@gcc.gnu.org>

* runtime/memory.c (internal_realloc): Use index_type for size
argument instead of GFC_INTEGER_4.
(allocate_array): Likewise.
(allocate): Likewise, add ifdef around unnecessary check.
(internal_reallo64): Remove.
(allocate_array64): Remove.
(allocate64): Remove.
* gfortran.map: Remove symbols for 64-bit allocation functions.

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

16 years ago * gcc.dg/vect/vect-strided-store-u16-i4.c: Remove abort() from input
irar [Sun, 1 Jul 2007 11:52:45 +0000 (11:52 +0000)]
* gcc.dg/vect/vect-strided-store-u16-i4.c: Remove abort() from input
initialization and fix dg-final check - the initialization loop is
vectorizable.

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

16 years ago PR middle-end/32559
uros [Sun, 1 Jul 2007 10:38:03 +0000 (10:38 +0000)]
    PR middle-end/32559
        * fold-const.c (fold-binary) [PLUS_EXPR]: Convert ~X + X to 1 or
        X + ~X to 1 only for INTEGRAL_TYPE_P type.

testsuite/ChangeLog:

        PR middle-end/32559
        * gcc.dg/pr32559.c: New test.

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

16 years ago PR tree-optimization/25371
uros [Sun, 1 Jul 2007 10:30:31 +0000 (10:30 +0000)]
   PR tree-optimization/25371
       * gcc.dg/vect/pr25371.c: New test.

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

16 years ago2007-06-30 Daniel Berlin <dberlin@dberlin.org>
dberlin [Sun, 1 Jul 2007 02:20:06 +0000 (02:20 +0000)]
2007-06-30  Daniel Berlin  <dberlin@dberlin.org>

* tree-ssa-pre.c (is_exception_related): New function
(can_value_number_operation): Use it.

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

16 years agoDaily bump.
gccadmin [Sun, 1 Jul 2007 00:17:08 +0000 (00:17 +0000)]
Daily bump.

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

16 years ago * configure.ac: Check for .gnu_attribute on MIPS.
jsm28 [Sat, 30 Jun 2007 22:01:30 +0000 (22:01 +0000)]
* configure.ac: Check for .gnu_attribute on MIPS.
* configure, config.in: Regenerate.
* config/mips/mips.c (mips_file_start): If supported, output
attribute for floating-point ABI.

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

16 years ago * gcc.c-torture/execute/20051113-1.c (main): Use the correct type
froydnj [Sat, 30 Jun 2007 17:40:45 +0000 (17:40 +0000)]
* gcc.c-torture/execute/20051113-1.c (main): Use the correct type
when allocating and initializing a flexible array.

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

16 years ago * gcc_update (files_and_dependencies): Handle
hp [Sat, 30 Jun 2007 17:17:14 +0000 (17:17 +0000)]
* gcc_update (files_and_dependencies): Handle
gcc/testsuite/gcc.dg/cpp/direct2s.c.

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

16 years ago PR target/32433
uros [Sat, 30 Jun 2007 17:05:49 +0000 (17:05 +0000)]
    PR target/32433
        * config/i386/i386.md (ffssi2): Expand as ffs_cmove for TARGET_CMOVE.
        (ffs_cmove): New expander to expand using ctz pattern.
        (*ffs_cmove): Remove pattern.
        (*ffs_no_cmove): Enable only for !TARGET_CMOVE.
        (ffsdi2): Expand using ctz pattern.
        (*ffs_rex64): Remove pattern.

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

16 years agogcc/fortran:
dfranke [Sat, 30 Jun 2007 16:26:55 +0000 (16:26 +0000)]
gcc/fortran:
2007-06-30  Daniel Franke  <franke.daniel@gmail.com>

PR fortran/20373
* intrinsic.c (add_functions): Additional function types.
(gfc_convert_type_warn): Remove intrinsic-flag from conversion
functions.
* resolve.c (resolve_symbol): Added type checks to explicitly defined
intrinsics.

gcc/testsuite:
2007-06-28  Daniel Franke  <franke.daniel@gmail.com>

PR fortran/20373
* gfortran.dg/intrinsic.f90: New test.

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

16 years ago2007-06-30 Tobias Burnus <burnus@net-b.de>
burnus [Sat, 30 Jun 2007 16:01:25 +0000 (16:01 +0000)]
2007-06-30  Tobias Burnus  <burnus@net-b.de>

PR fortran/32555
* io.c (check_format): Allow zero to precede the
P edit descriptor.

2007-06-30  Tobias Burnus  <burnus@net-b.de>

PR fortran/32555
* gfortran.dg/fmt_zero_check.f90: New.

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

16 years agoFix last ChangeLog entry.
danglin [Sat, 30 Jun 2007 15:17:27 +0000 (15:17 +0000)]
Fix last ChangeLog entry.

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

16 years ago rtl-optimization/32296
danglin [Sat, 30 Jun 2007 14:26:18 +0000 (14:26 +0000)]
rtl-optimization/32296
* pa.md (return): Delete pattern.
(return_internal): Remove "(const_int 1)" from pattern.
(epilogue): Use return_internal pattern for trivial returns.
* pa-protos.h (hppa_can_use_return_insn_p): Delete declaration.
* pa.c (hppa_can_use_return_insn_p): Delete function.  Include "df.h".

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

16 years ago2007-06-30 Daniel Berlin <dberlin@dberlin.org>
dberlin [Sat, 30 Jun 2007 14:15:26 +0000 (14:15 +0000)]
2007-06-30  Daniel Berlin  <dberlin@dberlin.org>

Fix PR tree-optimization/32540
Fix PR tree-optimization/31651

* tree-ssa-sccvn.c: New file.

* tree-ssa-sccvn.h: Ditto.

* tree-vn.c: Include tree-ssa-sccvn.h
(val_expr_paid_d): Removed.
(value_table): Ditto.
(vn_compute): Ditto.
(val_expr_pair_hash): Ditto.
(val_expr_pair_expr_eq): Ditto.
(copy_vuses_from_stmt): Ditto.
(vn_delete): Ditto.
(vn_init): Ditto.
(shared_vuses_from_stmt): Ditto.
(print_creation_to_file): Moved up.
(sort_vuses): Ditto.
(sort_vuses_heap): Ditto.
(set_value_handle): Make non-static.
(make_value_handle): Ditto.
(vn_add): Rewritten to use sccvn lookups.
(vn_add_with_vuses): Ditto.
(vn_lookup): Ditto (and second argument removed).
(vn_lookup_with_vuses): Ditto.
(vn_lookup_or_add): Ditto (and second argument removed);
(vn_lookup_or_add_with_vuses): Ditto.
(vn_lookup_with_stmt): New.
(vn_lookup_or_add_with_stmt): Ditto.
(create_value_handle_for_expr): Ditto.

* tree-ssa-pre.c: Include tree-ssa-sccvn.h.
(seen_during_translate): New function.
(phi_trans_lookup): Use iterative_hash_expr, not vn_compute.
(phi_trans_add): Ditto.
(constant_expr_p): FIELD_DECL is always constant.
(phi_translate_1): Renamed from phi_translate, add seen bitmap.
Use constant_expr_p.
Avoid infinite recursion on mutually valued expressions.
Change callers of vn_lookup_or_add.
(phi_translate): New function.
(compute_antic_safe): Allow phi nodes.
(create_component_ref_by_pieces): Update for FIELD_DECL change.
(find_or_generate_expression): Rewrite slightly.
(create_expression_by_pieces): Updated for vn_lookup_or_add
change.
Update VN_INFO for new names.
(insert_into_preds_of_block): Update for new names.
(add_to_exp_gen): New function.
(add_to_sets): Use vn_lookup_or_add_with_stmt.
(find_existing_value_expr): Rewrite to changed vn_lookup.
(create_value_expr_from): Ditto, and use add_to_exp_gen.
(try_look_through_load): Removed.
(try_combine_conversion): Ditto.
(get_sccvn_value): New function.
(make_values_for_phi): Ditto.
(make_values_for_stmt): Ditto.
(compute_avail): Rewritten for vn_lookup_or_add changes and to use
SCCVN.
(init_pre): Update for SCCVN changes.
(fini_pre): Ditto.
(execute_pre): Ditto.

* tree-flow.h (make_value_handle): Declare.
(set_value_handle): Ditto.
(sort_vuses_heap): Ditto.
(vn_lookup_or_add_with_stmt): Ditto.
(vn_lookup_with_stmt): Ditto.
(vn_compute): Remove.
(vn_init): Ditto.
(vn_delete): Ditto.
(vn_lookup): Update arguments.

* Makefile.in (tree-ssa-pre.o): Add tree-ssa-sccvn.h
(tree-vn.o): Ditto.
(tree-ssa-sccvn.o): New.
(OBJS-common): Add tree-ssa-sccvn.o

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

16 years ago2007-06-30 Paul Thomas <pault@gcc.gnu.org>
pault [Sat, 30 Jun 2007 13:09:14 +0000 (13:09 +0000)]
2007-06-30  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/32472
* simplify.c (gfc_simplify_repeat): Add handling of character
literal for first argument.

2007-06-30  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/30284
* gfortran.dg/repeat_f90: New test.

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

16 years ago2007-06-30 Paul Thomas <pault@gcc.gnu.org>
pault [Sat, 30 Jun 2007 13:08:19 +0000 (13:08 +0000)]
2007-06-30  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/32472
* simplify.c (gfc_simplify_repeat): Add handling of character
literal for first argument.

2007-06-30  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/30284
* gfortran.dg/repeat_f90: New test.

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

16 years ago2007-06-30 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
manu [Sat, 30 Jun 2007 13:06:45 +0000 (13:06 +0000)]
2007-06-30  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>

PR testsuite/25241
testsuite/
* gcc.dg/cpp/20000625-1.c: Without dg-options the default is
-pedantic-errors, so we should match errors.
* gcc.dg/cpp/escape-1.c: Likewise.
* gcc.dg/cpp/charconst.c: Empty character constants are errors.
* gcc.dg/cpp/direct2.c: This is a mandatory error instead of a
warning.
* gcc.dg/cpp/endif-pedantic2.c: Use -pedantic-errors to obtain
errors instead of warnings.
* gcc.dg/cpp/extratokens.c: Use dg-warning instead of dg-error for
a pedantic warning.
* gcc.dg/cpp/arith-3.c: Likewise.

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

16 years ago2007-06-30 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
manu [Sat, 30 Jun 2007 13:02:48 +0000 (13:02 +0000)]
2007-06-30  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>

PR testsuite/25241
testsuite/
* gcc.dg/pch/valid-1.c: Match each diagnostic with its own directive.
* gcc.dg/pch/valid-2.c: Likewise.
* gcc.dg/pch/valid-3.c: Likewise.
* gcc.dg/pch/warn-1.c: Likewise.
* gcc.dg/pch/valid-4.c: Match a warning instead of an error.

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

16 years ago2007-06-30 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
manu [Sat, 30 Jun 2007 12:56:43 +0000 (12:56 +0000)]
2007-06-30  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>

PR c/4076
* c-typeck.c (build_external_ref): Don't mark as used if called
from itself.
* calls.c (rtx_for_function_call): Likewise.

testsuite/
* gcc.dg/Wunused-function.c: New.

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

16 years agogcc/
rsandifo [Sat, 30 Jun 2007 12:23:18 +0000 (12:23 +0000)]
gcc/
Revert:

2007-06-27  Richard Sandiford  <richard@codesourcery.com>

* dce.c (deletable_insn_p_1): New function, split out from...
(deletable_insn_p): ...here.  Only treat bare USEs and CLOBBERs
specially, not those inside PARALLELs.  Remove BODY argument
and adjust recursive call accordingly.
(prescan_insns_for_dce): Update call to delete_insn_p.

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

16 years ago * combine.c (combine_validate_cost): New parameter NEWOTHERPAT.
rask [Sat, 30 Jun 2007 11:28:57 +0000 (11:28 +0000)]
* combine.c (combine_validate_cost): New parameter NEWOTHERPAT.
(try_combine): Move potential calls to undo_all() so they happen
before we commit to using the combined insns.

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

16 years ago * loop-unroll.c (unroll_loop_runtime_iterations): Unshare newly emit
hubicka [Sat, 30 Jun 2007 11:16:33 +0000 (11:16 +0000)]
* loop-unroll.c (unroll_loop_runtime_iterations): Unshare newly emit
code.

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

16 years ago * ipa.c (cgraph_postorder): Cast according to the coding conventions.
tneumann [Sat, 30 Jun 2007 10:52:30 +0000 (10:52 +0000)]
* ipa.c (cgraph_postorder): Cast according to the coding conventions.
(cgraph_remove_unreachable_nodes): Likewise.
* ipa-cp.c (ipcp_propagate_stage): Use BOTTOM instead of integer 0.
* ipa-inline.c (update_caller_keys): Cast according to the coding
conventions.
(cgraph_decide_recursive_inlining): Likewise.
(cgraph_decide_inlining_of_small_function): Likewise.
(try_inline): Likewise.
(cgraph_decide_inlining_incrementally): Likewise.
* ipa-pure-const.c (get_function_state): Likewise.
(scan_function): Likewise.
(analyze_function): Likewise.
  (static_execute): Likewise.
* gcc/ipa-reference.c (scan_for_static_refs): Likewise.
(merge_callee_local_info): Likewise.
(analyze_function): Use type safe memory macros.
(static_execute): Likewise. Cast according to the coding conventions.
* ipa-type-escape.c (scan_for_regs): Cast according to the coding
conventions.
* ipa-utils.c (searchc): Likewise. Avoid using C++ keywords as variable
names.
(ipa_utils_reduced_inorder): Likewise. Use type safe memory macros.
* ipa-utils.h (struct ipa_dfa_info): Avoid using C++ keywords as
variable names.

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

16 years agoAdd forgotten PR number to the last changelog entry:
pinskia [Sat, 30 Jun 2007 02:21:57 +0000 (02:21 +0000)]
Add forgotten PR number to the last changelog entry:
2007-06-29  Andrew Pinski  <andrew_pinski@playstation.sony.com>

        PR middle-end/30024
        * emit-rtl.c (init_emit_once): Intilize const_tiny_rtx[0]
        for complex modes (both int and real).

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

16 years ago2007-06-29 Andrew Pinski <andrew_pinski@playstation.sony.com>
pinskia [Sat, 30 Jun 2007 02:20:25 +0000 (02:20 +0000)]
2007-06-29  Andrew Pinski  <andrew_pinski@playstation.sony.com>

        * emit-rtl.c (init_emit_once): Intilize const_tiny_rtx[0]
        for complex modes (both int and real).

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

16 years agoDaily bump.
gccadmin [Sat, 30 Jun 2007 00:17:04 +0000 (00:17 +0000)]
Daily bump.

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

16 years ago2007-06-29 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Fri, 29 Jun 2007 23:29:41 +0000 (23:29 +0000)]
2007-06-29  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

* gfortran.fortran-torture/compile/inline_1.f90: Fix test.

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

16 years ago * cse.c: Rever accidentally comitted TODO_verify_rtl_sharing change.
hubicka [Fri, 29 Jun 2007 23:18:16 +0000 (23:18 +0000)]
* cse.c: Rever accidentally comitted TODO_verify_rtl_sharing change.

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

16 years ago2007-06-29 Douglas Gregor <doug.gregor@gmail.com>
dgregor [Fri, 29 Jun 2007 20:21:41 +0000 (20:21 +0000)]
2007-06-29  Douglas Gregor  <doug.gregor@gmail.com>

PR c++/31724
* init.c (build_new_1): Use structural equality on the copy of the
array type.

2007-06-29  Douglas Gregor  <doug.gregor@gmail.com>

* g++.dg/other/canon-31724.C: New.

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

16 years ago PR middle-end/32372
hubicka [Fri, 29 Jun 2007 20:13:41 +0000 (20:13 +0000)]
PR middle-end/32372
* cse.c (cse_insn): Avoid invalid sharing in between register note and
the insn pattern.

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

16 years ago PR target/32335
aesok [Fri, 29 Jun 2007 20:05:56 +0000 (20:05 +0000)]
PR target/32335
* config/avr/avr.c: Include dataflow header file.
(expand_prologue): Adjust for prologue insn change.
* config/avr/avr.md (call_prologue_saves): Only modify REG_SP once
inside a insn.

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

16 years ago2007-06-29 Douglas Gregor <doug.gregor@gmail.com>
dgregor [Fri, 29 Jun 2007 20:05:11 +0000 (20:05 +0000)]
2007-06-29  Douglas Gregor  <doug.gregor@gmail.com>

* testsuite/18_support/headers/cstdbool/std_c++0x_neg.cc: Force
C++98 mode.
* testsuite/18_support/headers/cstdint/std_c++0x_neg.cc: Ditto.
* testsuite/20_util/headers/type_traits/std_c++0x_neg.cc: Ditto.
* testsuite/23_containers/headers/array/std_c++0x_neg.cc: Ditto.
* testsuite/23_containers/headers/tuple/std_c++0x_neg.cc: Ditto.
* testsuite/23_containers/headers/unordered_map/std_c++0x_neg.cc:
Ditto.
* testsuite/23_containers/headers/unordered_set/std_c++0x_neg.cc:
Ditto.
* testsuite/26_numerics/headers/ccomplex/std_c++0x_neg.cc: Ditto.
* testsuite/26_numerics/headers/cfenv/std_c++0x_neg.cc: Ditto.
* testsuite/26_numerics/headers/ctgmath/std_c++0x_neg.cc: Ditto.
* testsuite/26_numerics/headers/random/std_c++0x_neg.cc: Ditto.
* testsuite/27_io/headers/cinttypes/std_c++0x_neg.cc: Ditto.
* testsuite/28_regex/headers/regex/std_c++0x_neg.cc: Ditto.

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

16 years ago2007-06-29 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Fri, 29 Jun 2007 19:39:21 +0000 (19:39 +0000)]
2007-06-29  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR libgfortran/32456
* io/unit.c (filename_from_unit): Don't use find_unit, instead search
for unit directly.

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

16 years agogcc/fortran:
dfranke [Fri, 29 Jun 2007 19:05:58 +0000 (19:05 +0000)]
gcc/fortran:
2007-06-29  Daniel Franke  <franke.daniel@gmail.com>

        PR fortran/31580
        * resolve.c (resolve_operator): Added check whether a user
defined operator is available.

gcc/testsuite:
2007-06-29  Daniel Franke  <franke.daniel@gmail.com>

PR fortran/31580
* gfortran.dg/operator_3.f90: New test.

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

16 years agoMissing ChangeLogs for revision 126115.
dfranke [Fri, 29 Jun 2007 18:32:24 +0000 (18:32 +0000)]
Missing ChangeLogs for revision 126115.

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

16 years agogcc/fortran:
dfranke [Fri, 29 Jun 2007 16:58:56 +0000 (16:58 +0000)]
gcc/fortran:
2007-06-29  Daniel Franke <franke.daniel@gmail.com>

        * openmp.c (resolve_omp_clauses): Adjust error message to
        better reflect the actual requirement.

gcc/testsuite:
2007-06-29  Daniel Franke  <franke.daniel@gmail.com>

        * gfortran.dg/gomp/reduction1.f90: Adjust error message.
        * gfortran.dg/gomp/allocatable_components_1.f90: Likewise.

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

16 years agoCorrect date.
drow [Fri, 29 Jun 2007 14:28:19 +0000 (14:28 +0000)]
Correct date.

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

16 years ago2006-06-29 Richard Guenther <rguenther@suse.de>
rguenth [Fri, 29 Jun 2007 13:43:10 +0000 (13:43 +0000)]
2006-06-29  Richard Guenther  <rguenther@suse.de>

PR middle-end/32493
* gimplify.c (gimplify_call_expr): Ignore variable argument parts
during type verification.

* gcc.dg/inline-23.c: New testcase.

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

16 years ago * recog.c (validate_change_rtx_1): Unshare TO argument.
hubicka [Fri, 29 Jun 2007 10:41:48 +0000 (10:41 +0000)]
* recog.c (validate_change_rtx_1): Unshare TO argument.

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

16 years ago PR tree-optimization/24659
uros [Fri, 29 Jun 2007 10:30:06 +0000 (10:30 +0000)]
PR tree-optimization/24659
* tree-vect-transform.c (vectorizable_call): Handle
(nunits_in == nunits_out / 2) and (nunits_out == nunits_in / 2) cases.

* config/i386/sse.md (vec_pack_sfix_v2df): New expander.
* config/i386/i386.c (enum ix86_builtins)
[IX86_BUILTIN_VEC_PACK_SFIX]: New constant.
(struct bdesc_2arg) [__builtin_ia32_vec_pack_sfix]: New builtin
description.
(ix86_init_mmx_sse_builtins): Define all builtins with 2 arguments as
const using def_builtin_const.
(ix86_expand_binop_builtin): Remove bogus assert() that insn wants
input operands in the same modes as the result.
(ix86_builtin_vectorized_function): Handle BUILT_IN_LRINT.

testsuite/ChangeLog:

PR tree-optimization/24659
* gcc.target/i386/vectorize2.c: New test.
* gcc.target/i386/sse2-lrint-vec.c: New runtime test.
* gcc.target/i386/sse2-lrintf-vec.c: Ditto.

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

16 years ago(forgot svn add in the previous commit)
burnus [Fri, 29 Jun 2007 10:05:11 +0000 (10:05 +0000)]
(forgot svn add in the previous commit)

2007-06-29  Tobias Burnus  <burnus@net-b.de>

        PR fortran/32483
        * gfortran.dg/fmt_read_2.f90: New.

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

16 years agogcc/
rsandifo [Fri, 29 Jun 2007 07:05:23 +0000 (07:05 +0000)]
gcc/
* df-problems.c (df_set_unused_notes_for_mw): Fix formatting.
(df_set_dead_notes_for_mw): Likewise.

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

16 years ago * c-common.c (pointer_int_sum): Do the negation in sizetype.
ebotcazou [Fri, 29 Jun 2007 06:11:17 +0000 (06:11 +0000)]
* c-common.c (pointer_int_sum): Do the negation in sizetype.

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

16 years ago2007-06-29 Tobias Burnus <burnus@net-b.de>
burnus [Fri, 29 Jun 2007 06:03:05 +0000 (06:03 +0000)]
2007-06-29  Tobias Burnus  <burnus@net-b.de>

PR fortran/32483
* io.c (format_lex): Fix FMT_ZERO.
(check_format,check_format_string,gfc_match_format,
check_io_constraints) Additional checking for READ.

2007-06-29  Tobias Burnus  <burnus@net-b.de>

PR fortran/32483
* gfortran.dg/fmt_read_2.f90: New.

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

16 years ago2007-06-28 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Fri, 29 Jun 2007 05:38:45 +0000 (05:38 +0000)]
2007-06-28  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

* gfortran.dg/open_errors.f90: Check for existance of temptestfile.
If it exists, don't try to create it.

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

16 years ago2007-06-28 H.J. Lu <hongjiu.lu@intel.com>
hjl [Fri, 29 Jun 2007 05:03:33 +0000 (05:03 +0000)]
2007-06-28  H.J. Lu  <hongjiu.lu@intel.com>

* testsuite/libjava.jvmti/jvmti-interp.exp (gij_jvmti_test_one):
Fix a typo.

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

16 years agoDaily bump.
gccadmin [Fri, 29 Jun 2007 00:17:15 +0000 (00:17 +0000)]
Daily bump.

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

16 years ago2007-06-28 Paolo Carlini <pcarlini@suse.de>
paolo [Thu, 28 Jun 2007 22:58:32 +0000 (22:58 +0000)]
2007-06-28  Paolo Carlini  <pcarlini@suse.de>

PR libstdc++/32509
* acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Carry out the checks
involving the de_DE locale only if an auto locale config is
used for a target suitable for the gnu locale model.
* docs/html/install.html: Update.
* configure: Regenerated.

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

16 years agoFix typo.
geoffk [Thu, 28 Jun 2007 20:29:25 +0000 (20:29 +0000)]
Fix typo.

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

16 years ago* config/m32c/m32c.h (OVERRIDE_OPTIONS): Omit unneeded semicolon.
dj [Thu, 28 Jun 2007 20:26:19 +0000 (20:26 +0000)]
* config/m32c/m32c.h (OVERRIDE_OPTIONS): Omit unneeded semicolon.

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

16 years ago2007-06-28 Jan Nijtmans <nijtmans@users.sourceforge.net>
tromey [Thu, 28 Jun 2007 19:35:25 +0000 (19:35 +0000)]
2007-06-28  Jan Nijtmans  <nijtmans@users.sourceforge.net>

PR libgcj/30999:
* jni_md.h: Add the possibility to compile jni code with.
-fvisibility=hidden. This causes all symbols to be hidden
except the JNI functions which need to be exported.

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

16 years ago* configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
dj [Thu, 28 Jun 2007 19:34:07 +0000 (19:34 +0000)]
* configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
not building newlib.
* configure: Regenerated.

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

16 years agoIndex: gcc/ChangeLog
geoffk [Thu, 28 Jun 2007 19:31:45 +0000 (19:31 +0000)]
Index: gcc/ChangeLog
2007-06-21  Geoffrey Keating  <geoffk@apple.com>

* doc/invoke.texi (C++ Dialect Options): Document
fvisibility-ms-compat.
* c.opt (fvisibility-ms-compat): New.

Index: gcc/cp/ChangeLog
2007-06-21  Geoffrey Keating  <geoffk@apple.com>

* decl2.c (determine_visibility): Implement
flag_visibility_ms_compat effect on type info.
* decl.c (cxx_init_decl_processing): Implement
global effect of flag_visibility_ms_compat.

Index: gcc/testsuite/ChangeLog
2007-06-26  Geoffrey Keating  <geoffk@apple.com>

* g++.dg/ext/visibility/ms-compat-1.C: New.

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

16 years ago * gcc_release: Update for Objective-C++.
mrs [Thu, 28 Jun 2007 19:16:02 +0000 (19:16 +0000)]
* gcc_release: Update for Objective-C++.

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

16 years ago * gcc_release: Update for Objective-C++.
mrs [Thu, 28 Jun 2007 19:12:10 +0000 (19:12 +0000)]
* gcc_release: Update for Objective-C++.

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

16 years ago2007-06-28 Andreas Tobler <a.tobler@schweiz.org>
andreast [Thu, 28 Jun 2007 19:03:55 +0000 (19:03 +0000)]
2007-06-28  Andreas Tobler  <a.tobler@schweiz.org>

* testsuite/libjava.jvmti/jvmti-interp.exp (gij_jvmti_test_one): Pass
the cxxldlibflags to exec_gij to have the right libstdc++ invoked.

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

16 years ago2007-06-28 Andrew Pinski <andrew_pinski@playstation.sony.com>
pinskia [Thu, 28 Jun 2007 19:03:49 +0000 (19:03 +0000)]
2007-06-28  Andrew Pinski  <andrew_pinski@playstation.sony.com>

        PR tree-opt/32417
        * tree-affine.c (aff_combination_add_elt): Handle
        pointer addition specially.

2007-06-28  Andrew Pinski  <andrew_pinski@playstation.sony.com>

        PR tree-opt/32417
        * gfortran.fortran-torture/compile/pr32417.f90: New test.

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

16 years ago2007-06-28 Jan Sjodin <jan.sjodin@amd.com>
jsjodin [Thu, 28 Jun 2007 18:37:47 +0000 (18:37 +0000)]
2007-06-28  Jan Sjodin  <jan.sjodin@amd.com>

        * MAINTAINERS (Write After Approval): Add myself.

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

16 years ago * decl2.c (start_objects): Mark constructor-runnning function
geoffk [Thu, 28 Jun 2007 18:31:53 +0000 (18:31 +0000)]
* decl2.c (start_objects): Mark constructor-runnning function
as artificial.

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

16 years ago2007-06-28 Jakub Jelinek <jakub@redhat.com>
jakub [Thu, 28 Jun 2007 11:28:13 +0000 (11:28 +0000)]
2007-06-28  Jakub Jelinek  <jakub@redhat.com>

* config/rs6000/rs6000.c (rs6000_function_ok_for_sibcall): Ensure
decl is non-external for AIX ABI.

2007-06-28  David Edelsohn  <edelsohn@gnu.org>

* config/rs6000/predicates.md (current_file_function_operand):
Ensure the symbol is non-external for AIX ABI.

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

16 years ago* gcc.dg/vect/vect-iv-4.c: Test now passes on vect_pack_trunc targets
dorit [Thu, 28 Jun 2007 09:54:41 +0000 (09:54 +0000)]
* gcc.dg/vect/vect-iv-4.c: Test now passes on vect_pack_trunc targets

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

16 years ago* common.opt (fipa-matrix-reorg): Add Optimization attribute.
nickc [Thu, 28 Jun 2007 09:30:57 +0000 (09:30 +0000)]
* common.opt (fipa-matrix-reorg): Add Optimization attribute.
  (fdce, fdse, fpredictive-commoning): Likewise.

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

16 years agoDaily bump.
gccadmin [Thu, 28 Jun 2007 00:17:21 +0000 (00:17 +0000)]
Daily bump.

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

16 years ago PR other/31400
fxcoudert [Wed, 27 Jun 2007 22:58:37 +0000 (22:58 +0000)]
PR other/31400

* gcc.c (process_command): Recognize the new -static-libgfortran
option.

* lang.opt (static-libgfortran): New option.
* gfortranspec.c (ADD_ARG_LIBGFORTRAN): New macro.
(Option): Add OPTION_static and OPTION_static_libgfortran.
(lookup_option): Handle the new -static-libgfortran option.
(lang_specific_driver): Check whether -static is passed.
Handle the new -static-libgfortran option.
* options.c (gfc_handle_option): If -static-libgfortran is
passed and isn't supported on this configuration, error out.

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

16 years ago2007-06-27 Rask Ingemann Lambertsen <rask@sygehus.dk>
rask [Wed, 27 Jun 2007 22:23:35 +0000 (22:23 +0000)]
2007-06-27  Rask Ingemann Lambertsen  <rask@sygehus.dk>

PR target/32418
* config/m32c/m32c.c (m32c_eh_return_stackadj_rtx): Dataflow fix:
Use a call clobbered hard reg instead of a pseudo reg.

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

16 years ago * config/sh/sh.md (load_gbr): Use correct operand constraint.
kkojima [Wed, 27 Jun 2007 22:18:59 +0000 (22:18 +0000)]
* config/sh/sh.md (load_gbr): Use correct operand constraint.

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

16 years ago PR target/32479
kkojima [Wed, 27 Jun 2007 21:40:19 +0000 (21:40 +0000)]
PR target/32479
* config/sh/sh.md (udivsi3): Don't wrap the sequence with
REG_LIBCALL and REG_RETVAL notes.
(divsi3, mulsi3): Likewise.
(mulhisi3): Likewise.  Use emit_libcall_block.
(umulhisi3, smulsi3_highpart, umulsi3_highpart_i): Likewise.

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

16 years agogcc/fortran:
dfranke [Wed, 27 Jun 2007 20:02:31 +0000 (20:02 +0000)]
gcc/fortran:
2007-06-24  Daniel Franke  <franke.daniel@gmail.com>

PR fortran/32467
* openmp.c (resolve_omp_clauses): Emit error on allocatable components
in COPYIN, COPYPRIVATE, FIRSTPRIVATE and LASTPRIVATE clauses.

gcc/testsuite:
2007-06-24  Daniel Franke  <franke.daniel@gmail.com>

        PR fortran/32467
        * gfortran.dg/gomp/allocatable_components_1.f90: New test.

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

16 years agoFix nits.
ebotcazou [Wed, 27 Jun 2007 19:56:56 +0000 (19:56 +0000)]
Fix nits.

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

16 years ago * acx.m4 (ACX_CHECK_INSTALLED_TARGET_TOOL): Fixup logic for cross
mrs [Wed, 27 Jun 2007 19:53:03 +0000 (19:53 +0000)]
* acx.m4 (ACX_CHECK_INSTALLED_TARGET_TOOL): Fixup logic for cross
builds.

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

16 years ago2007-06-27 Seongbae Park <seongbae.park@gmail.com>
spark [Wed, 27 Jun 2007 18:17:15 +0000 (18:17 +0000)]
2007-06-27  Seongbae Park  <seongbae.park@gmail.com>

PR rtl-optimization/32481
* combine.c (adjust_for_new_dest): Rescan the changed insn.

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

16 years agogcc/
rsandifo [Wed, 27 Jun 2007 14:37:05 +0000 (14:37 +0000)]
gcc/
* dce.c (deletable_insn_p_1): New function, split out from...
(deletable_insn_p): ...here.  Only treat bare USEs and CLOBBERs
specially, not those inside PARALLELs.  Remove BODY argument
and adjust recursive call accordingly.
(prescan_insns_for_dce): Update call to delete_insn_p.

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

16 years ago2007-06-27 Richard Guenther <rguenther@suse.de>
rguenth [Wed, 27 Jun 2007 14:01:27 +0000 (14:01 +0000)]
2007-06-27  Richard Guenther  <rguenther@suse.de>

PR middle-end/32492
* tree.h (fold_convertible_p): Declare.
* fold-const.c (fold_convertible_p): New function.
* gimplify.c (gimplify_call_expr): Use fold_convertible_p
instead of lang_hooks.types_compatible_p.

* gcc.dg/inline-22.c: New testcase.

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

16 years ago * fwprop.c (try_fwprop_subst): Use validate_unshare_change.
hubicka [Wed, 27 Jun 2007 01:21:13 +0000 (01:21 +0000)]
* fwprop.c (try_fwprop_subst): Use validate_unshare_change.
* postreload.c (reload_cse_simplify_set): Instead of copying the rtx
early use validate_unshare_change.
(reload_combine): Likewise.
* recog.c (change_t): New field unshare.
(validate_change_1): Rename from validate_change; add argument unshare.
(validate_change): Turn into wrapper of validate_change_1; update
prototype for bools.
(validate_unshare_change): New.
(confirm_change_group): Unshare changes if asked for; avoid unnecesary
calls of df_insn_rescan.
* recog.h (validate_change): Replace ints by bools.
(validate_unshare_change): Declare.

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

16 years agoDaily bump.
gccadmin [Wed, 27 Jun 2007 00:17:03 +0000 (00:17 +0000)]
Daily bump.

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

16 years agoforgot to save back the change log
zadeck [Tue, 26 Jun 2007 20:09:24 +0000 (20:09 +0000)]
forgot to save back the change log

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

16 years ago * be.po, ca.po, da.po, de.po, el.po, es.po, fr.po, ja.po, nl.po,
jsm28 [Tue, 26 Jun 2007 20:05:37 +0000 (20:05 +0000)]
* be.po, ca.po, da.po, de.po, el.po, es.po, fr.po, ja.po, nl.po,
rw.po, sv.po, tr.po, vi.po, zh_CN.po, zh_TW.po: Update.

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

16 years ago2007-06-26 Kenneth Zadeck <zadeck@naturalbridge.com>
zadeck [Tue, 26 Jun 2007 20:05:19 +0000 (20:05 +0000)]
2007-06-26  Kenneth Zadeck <zadeck@naturalbridge.com>

        * tree.def (VEC_WIDEN_MULT_LO_EXPR): Corrected string name.

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

16 years ago * be.po, ca.po, da.po, de.po, el.po, es.po, fr.po, ja.po, nl.po,
jsm28 [Tue, 26 Jun 2007 20:01:49 +0000 (20:01 +0000)]
* be.po, ca.po, da.po, de.po, el.po, es.po, fr.po, ja.po, nl.po,
ru.po, rw.po, sr.po, sv.po, tr.po, zh_CN.po, zh_TW.po: Update.

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

16 years ago * gcc.target/i386/large-size-array-3.c: Remove the larger size of
hmchang [Tue, 26 Jun 2007 17:28:13 +0000 (17:28 +0000)]
* gcc.target/i386/large-size-array-3.c: Remove the larger size of
the scan-assembler constant.

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

16 years ago2007-06-26 Benjamin Kosnik <bkoz@redhat.com>
bkoz [Tue, 26 Jun 2007 15:58:45 +0000 (15:58 +0000)]
2007-06-26  Benjamin Kosnik  <bkoz@redhat.com>

* testsuite/util/testsuite_api.h: New.
* testsuite/27_io/ios_base/failure: Add.
* testsuite/27_io/ios_base/failure/cons_virtual_derivation.cc: New.
* testsuite/27_io/ios_base/failure/what-1.cc: Same.
* testsuite/27_io/ios_base/failure/what-2.cc: Same.
* testsuite/27_io/ios_base/failure/what-big.cc: Same.
* testsuite/27_io/ios_base/failure/what-3.cc: Same.
* testsuite/19_diagnostics/logic_error/
cons_virtual_derivation.cc: Same.
* testsuite/19_diagnostics/runtime_error/
cons_virtual_derivation.cc: Same.
* testsuite/18_support/bad_alloc/cons_virtual_derivation.cc: Same.
* testsuite/18_support/bad_cast/cons_virtual_derivation.cc: Same.
* testsuite/18_support/bad_exception/cons_virtual_derivation.cc: Same.
* testsuite/18_support/bad_typeid/cons_virtual_derivation.cc: Same.
* testsuite/ext/concurrence_lock_error: New.
* testsuite/ext/concurrence_lock_error/
cons_virtual_derivation.cc: Same.
* testsuite/ext/forced_exception_error: New.
* testsuite/ext/forced_exception_error/
cons_virtual_derivation.cc: Same.
* testsuite/ext/concurrence_unlock_error: New.
* testsuite/ext/concurrence_unlock_error/
cons_virtual_derivation.cc: Same.
* testsuite/20_util/function_objects/bad_function_call: New.
* testsuite/20_util/function_objects/bad_function_call/
cons_virtual_derivation.cc: Same.

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

16 years ago * builtins.c (expand_builtin_next_arg): Change Pmode to ptr_mode.
sje [Tue, 26 Jun 2007 15:47:59 +0000 (15:47 +0000)]
* builtins.c (expand_builtin_next_arg): Change Pmode to ptr_mode.

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

16 years ago2007-06-26 Benjamin Kosnik <bkoz@redhat.com>
bkoz [Tue, 26 Jun 2007 11:01:15 +0000 (11:01 +0000)]
2007-06-26  Benjamin Kosnik  <bkoz@redhat.com>

* include/ext/throw_allocator.h: Fixes for -fno-exceptions.
* testsuite/util/testsuite_shared.cc: Same.
* testsuite/util/io/illegal_input_error.hpp: Same.
* testsuite/util/io/verified_cmd_line_input.cc: Same.

* libsupc++/typeinfo (type_info): Correct comment formatting,
clarify member access and public interface.
* libsupc++/exception: Less compressed comments.
* libsupc++/new: Same.

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

16 years ago * ipa-inline.c (cgraph_mark_inline): Assert that we never inline
hubicka [Tue, 26 Jun 2007 10:31:55 +0000 (10:31 +0000)]
* ipa-inline.c (cgraph_mark_inline): Assert that we never inline
uninlinable call.
(cgraph_decide_inlining_of_small_function, cgraph_decide_inlining,
cgraph_decide_inlining_incrementally): Move uninlinability checks to
places other call site specific checks are performed.

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

16 years ago PR 20216
geoffk [Tue, 26 Jun 2007 01:18:08 +0000 (01:18 +0000)]
PR 20216
* gcc.dg/pr20216.c: New.

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