gcc.git
13 years agostl_tree.h (_Rb_tree<>::_M_const_cast_iter): Remove.
Paolo Carlini [Sun, 14 Nov 2010 18:41:01 +0000 (18:41 +0000)]
stl_tree.h (_Rb_tree<>::_M_const_cast_iter): Remove.

2010-11-14  Paolo Carlini  <paolo.carlini@oracle.com>

* include/bits/stl_tree.h (_Rb_tree<>::_M_const_cast_iter): Remove.
(_Rb_tree_const_iterator<>::_M_const_cast): Add.
(_Rb_tree<>::erase, _M_insert_unique_): Adjust.
* include/debug/map.h (map<>::erase, insert): Fix C++0x signatures.
* include/debug/multimap.h (multimap<>::erase, insert): Likewise.
* include/debug/set.h (set<>::erase, insert): Fix, only cosmetic
changes in this case.
* include/debug/multiset.h (multiset<>::erase, insert): Likewise.
* include/profile/set.h (set<>::insert): Remove redundant macro.
* include/profile/multiset.h (multiset<>::insert): Likewise.
* include/bits/stl_set.h (set<>::insert): Likewise.
* include/bits/stl_multiset.h (multiset<>::insert): Likewise.

From-SVN: r166734

13 years agore PR c/46475 (FAIL: gcc.dg/nofixed-point-2.c)
Paolo Bonzini [Sun, 14 Nov 2010 15:46:59 +0000 (15:46 +0000)]
re PR c/46475 (FAIL: gcc.dg/nofixed-point-2.c)

2010-11-14  Paolo Bonzini  <bonzini@gnu.org>

PR c/46475
* gcc.dg/nofixed-point-2.c: Change dg-warning to dg-bogus.

From-SVN: r166733

13 years agore PR c/46462 (Revision 166700 caused new C test failures)
Paolo Bonzini [Sun, 14 Nov 2010 13:10:41 +0000 (13:10 +0000)]
re PR c/46462 (Revision 166700 caused new C test failures)

2010-11-13  Paolo Bonzini  <bonzini@gnu.org>

PR c/46462
* c-decl.c (declspecs_add_type): Make variables with error types
integers.
* c-parser.c (c_parser_next_tokens_start_declaration): Two IDs
do not start a declaration before an Objective-C foreach.
(c_parser_declaration_or_fndef): Improve recovery after unknown
type name.
(c_parser_for_statement): Hoist entrance of "foreach context"
before ifs, add corresponding reset where it was missing.  Do
not set objc_could_be_foreach_context for C.

From-SVN: r166732

13 years agore PR tree-optimization/45722 (FAIL: gcc.c-torture/execute/20040709-2.c execution...
Eric Botcazou [Sun, 14 Nov 2010 11:24:47 +0000 (11:24 +0000)]
re PR tree-optimization/45722 (FAIL: gcc.c-torture/execute/20040709-2.c execution at -O1 and -Os)

PR tree-optimization/45722
* tree-sra.c (build_ref_for_model): Always build a COMPONENT_REF if
this is a reference to a component.
* ipa-prop.c (ipa_get_member_ptr_load_param): Accept COMPONENT_REF.
(ipa_note_param_call): Adjust comment.

From-SVN: r166731

13 years agoIn gcc/objc/: 2010-11-14 Nicola Pero <nicola.pero@meta-innovation.com>
Nicola Pero [Sun, 14 Nov 2010 11:11:18 +0000 (11:11 +0000)]
In gcc/objc/: 2010-11-14 Nicola Pero <nicola.pero@meta-innovation.com>

In gcc/objc/:
2010-11-14  Nicola Pero  <nicola.pero@meta-innovation.com>

        * objc-act.c (objc_add_property_declaration): Check that the decl
        we received from the parser is a FIELD_DECL; reject array and
        bitfield properties.  Convert the warning when a property is
        readonly and a setter is specified into an error.  Convert errors
        when a property declaration does not match a property declaration
        in a superclass into warnings.
        (objc_add_synthesize_declaration_for_property): Use
        DECL_BIT_FIELD_TYPE to determine the type of an instance variable
        if it is a bitfield.  Throw an error if we are asked to synthesize
        setters/getters for a bitfield instance variable but the property
        is not appropriate - it must be assign and nonatomic.  If the
        property is readonly, allow the instance variable type to be a
        specialization of the property type.
        (objc_type_valid_for_messaging): Fixed returning 'false' for a
        Class qualified with a protocol when the 'accept_classes' argument
        is 'false'.

In gcc/testsuite/:
2010-11-14  Nicola Pero  <nicola.pero@meta-innovation.com>

        * objc.dg/property/at-property-21.m: New.
        * objc.dg/property/at-property-22.m: New.
        * objc.dg/property/at-property-23.m: New.
        * objc.dg/property/synthesize-9.m: New.
        * objc.dg/property/synthesize-10.m: New.
        * objc.dg/property/synthesize-11.m: New.
        * obj-c++.dg/property/at-property-21.mm: New.
        * obj-c++.dg/property/at-property-22.mm: New.
        * obj-c++.dg/property/at-property-23.mm: New.
        * obj-c++.dg/property/synthesize-9.mm: New.
        * obj-c++.dg/property/synthesize-10.mm: New.
        * obj-c++.dg/property/synthesize-11.mm: New.

        * objc.dg/property/at-property-4.m: Updated to match new compiler
        where some errors have been converted into warnings and vice versa.
        * objc.dg/property/at-property-16.m: Same change.
        * objc.dg/property/at-property-18.m: Same change.
        * objc.dg/property/property-neg-5.m: Same change.
        * obj-c++.dg/property/at-property-4.mm: Same change.
        * obj-c++.dg/property/at-property-16.mm: Same change.
        * obj-c++.dg/property/at-property-18.mm: Same change.
        * obj-c++.dg/property/property-neg-5.mm: Same change.

        * obj-c++.dg/property/dynamic-2.mm: Enable tests that were
        commented out because of testsuite problems; I found out that
        using dg-warning instead of dg-message gets them to work.
        * obj-c++.dg/property/property-neg-3.mm: Same change.
        * obj-c++.dg/property/synthesize-6.mm: Same change.
        * obj-c++.dg/property/at-property-5.mm: Same change.
        * obj-c++.dg/property/at-property-14.mm: Same change.
        * obj-c++.dg/property/at-property-18.mm: Same change.
        * obj-c++.dg/property/at-property-16.mm: Same change (in this file,
        some tests still do not work due to some other testsuite issue).

From-SVN: r166730

13 years agomips.c (machine_function): Remove initialized_mips16_gp_pseudo_p.
Richard Sandiford [Sun, 14 Nov 2010 10:29:15 +0000 (10:29 +0000)]
mips.c (machine_function): Remove initialized_mips16_gp_pseudo_p.

gcc/
* config/mips/mips.c (machine_function): Remove
initialized_mips16_gp_pseudo_p.
(mips16_gp_pseudo_reg): Use cfun->machine->mips16_gp_pseudo_rtx to
detect whether a pseudo has already been created.  Unconditionally
create a new one if not.
(mips_pic_base_register): Only call mips16_gp_pseudo_reg when
expanding to rtl.  Create a new pseudo otherwise, if allowed.

From-SVN: r166729

13 years agoDaily bump.
GCC Administrator [Sun, 14 Nov 2010 00:18:45 +0000 (00:18 +0000)]
Daily bump.

From-SVN: r166728

13 years agodecl.c (cp_finish_decl): Use resolve_nondeduced_context for auto.
Jason Merrill [Sun, 14 Nov 2010 00:06:48 +0000 (19:06 -0500)]
decl.c (cp_finish_decl): Use resolve_nondeduced_context for auto.

* decl.c (cp_finish_decl): Use resolve_nondeduced_context for auto.
* init.c (build_new): Likewise.
* pt.c (tsubst_decl): Likewise.
(do_auto_deduction): Likewise.
(resolve_nondeduced_context): Use build_offset_ref and
cp_build_addr_expr.

From-SVN: r166724

13 years agore PR target/43440 (Overwriting neon quad register does not clobber all included...
Richard Earnshaw [Sat, 13 Nov 2010 23:08:26 +0000 (23:08 +0000)]
re PR target/43440 (Overwriting neon quad register does not clobber all included single registers)

PR target/43440
* tm.texi.in (OVERLAPPING_REGISTER_NAMES): Document new macro.
* tm.texi: Regenerated.
* output.h (decode_reg_name_and_count): Declare.
* varasm.c (decode_reg_name_and_count): New function.
(decode_reg_name): Reimplement using decode_reg_name_and_count.
* reginfo.c (fix_register): Use decode_reg_name_and_count and
iterate over all regs used.
* stmt.c (expand_asm_operands): Likewise.
* arm/aout.h (OVERLAPPING_REGISTER_NAMES): Define.
(ADDITIONAL_REGISTER_NAMES): Remove aliases that overlap
multiple machine registers.

From-SVN: r166723

13 years agotm.texi.in (OVERLAPPING_REGISTER_NAMES): Document new macro.
Richard Earnshaw [Sat, 13 Nov 2010 23:04:26 +0000 (23:04 +0000)]
tm.texi.in (OVERLAPPING_REGISTER_NAMES): Document new macro.

* tm.texi.in (OVERLAPPING_REGISTER_NAMES): Document new macro.
* tm.texi: Regenerated.
* output.h (decode_reg_name_and_count): Declare.
* varasm.c (decode_reg_name_and_count): New function.
(decode_reg_name): Reimplement using decode_reg_name_and_count.
* reginfo.c (fix_register): Use decode_reg_name_and_count and
iterate over all regs used.
* stmt.c (expand_asm_operands): Likewise.
* arm/aout.h (OVERLAPPING_REGISTER_NAMES): Define.
(ADDITIONAL_REGISTER_NAMES): Remove aliases that overlap
multiple machine registers.

From-SVN: r166722

13 years agostor-layout.c (place_union_field): Do not put location information on offset expressions.
Eric Botcazou [Sat, 13 Nov 2010 22:38:04 +0000 (22:38 +0000)]
stor-layout.c (place_union_field): Do not put location information on offset expressions.

* stor-layout.c (place_union_field): Do not put location information
on offset expressions.
(place_field): Likewise.
(finalize_record_size): Likewise on size expressions.
(finalize_type_size): Likewise.
(layout_type): Likewise.

From-SVN: r166721

13 years agore PR bootstrap/39622 (Missing -isystem include-fixed when building canadian cross...
Georg-Johann Lay [Sat, 13 Nov 2010 19:45:12 +0000 (19:45 +0000)]
re PR bootstrap/39622 (Missing -isystem include-fixed when building canadian cross libgcc)

2010-11-13  Georg-Johann Lay  <georgjohann@web.de>

        PR bootstrap/39622
        * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
        * configure: Regenerated.

From-SVN: r166720

13 years agore PR rtl-optimization/42889 ("-fcompare-debug failure (length)" with "-O1 -fgcse")
Alexandre Oliva [Sat, 13 Nov 2010 18:51:57 +0000 (18:51 +0000)]
re PR rtl-optimization/42889 ("-fcompare-debug failure (length)" with "-O1 -fgcse")

PR debug/42889
* df-scan.c (df_insn_rescan): Don't mark BBs upon debug insns.
* df-core.c (df_set_bb_dirty_nonrl): Remove.
* df.h (df_set_bb_dirty_nonlr): Likewise.

From-SVN: r166719

13 years agolto-plugin.c (add_output_files): Fix memory leak.
Kai Tietz [Sat, 13 Nov 2010 18:49:07 +0000 (18:49 +0000)]
lto-plugin.c (add_output_files): Fix memory leak.

2010-11-13  Kai Tietz  <kai.tietz@onevision.com>

        * lto-plugin.c (add_output_files): Fix memory leak.

From-SVN: r166718

13 years agomips.md (call_internal): Pass curr_insn to mips_split_call.
Uros Bizjak [Sat, 13 Nov 2010 17:32:46 +0000 (18:32 +0100)]
mips.md (call_internal): Pass curr_insn to mips_split_call.

gcc/
2010-11-03  Uros Bizjak  <ubizjak@gmail.com>

* config/mips/mips.md (call_internal): Pass curr_insn to
mips_split_call.
(call_internal_direct): Ditto.
(call_value_internal): Ditto.
(call_value_internal_direct): Ditto.
(call_value_multiple_internal): Ditto.
* config/mips/mips.c (mips_split_call): Do not copy
CALL_INSN_FUNCTION_USAGE here.

From-SVN: r166717

13 years agoinvoke.texi (MIPS Options): Add loongson3a processor.
Mingming Sun [Sat, 13 Nov 2010 17:30:52 +0000 (17:30 +0000)]
invoke.texi (MIPS Options): Add loongson3a processor.

gcc/
2010-09-21  Mingming Sun  <mingm.sun@gmail.com>

* doc/invoke.texi (MIPS Options): Add loongson3a processor.
* config/mips/mips.md (define_attr "cpu"): Add loongson_3a.
(define_insn "prefetch"): Add TARGET_LOONGSON_3A.
* config/mips/mips.h (TARGET_LOONGSON_3A): Define.
(TUNE_LOONGSON_3A): Define.
(TARGET_LOONGSON_VECTORS): Add TARGET_LOONGSON_3A.
(MIPS_ISA_LEVEL_SPEC): Add loongson3a.
* config/mips/mips.c (mips_cpu_info_table): Add loongson3a.
(mips_issue_rate): Add PROCESSOR_LOONGSON_3A.
(mips_rtx_cost_data): Add Loongson-3A.

From-SVN: r166716

13 years agofsf-nsstring-format-1.m: Adjust format messages.
Iain Sandoe [Sat, 13 Nov 2010 17:15:17 +0000 (17:15 +0000)]
fsf-nsstring-format-1.m: Adjust format messages.

gcc/testsuite:

* objc.dg/fsf-nsstring-format-1.m: Adjust format messages.
* obj-c++.dg/fsf-nsstring-format-1.mm: Likewise.

From-SVN: r166713

13 years agoMAINTAINERS: Update my email address.
Kaveh R. Ghazi [Sat, 13 Nov 2010 16:34:31 +0000 (16:34 +0000)]
MAINTAINERS: Update my email address.

* MAINTAINERS: Update my email address.

From-SVN: r166712

13 years agore PR c/46462 (Revision 166700 caused new C test failures)
Paolo Bonzini [Sat, 13 Nov 2010 16:19:33 +0000 (16:19 +0000)]
re PR c/46462 (Revision 166700 caused new C test failures)

2010-11-13  Paolo Bonzini  <bonzini@gnu.org>

PR c/46462
* gcc.dg/gomp/pr34607.c: Adjust errors for unknown typenames.
* gcc.dg/pr35746.c: Likewise.
* gcc.dg/cpp/direct2.c: Likewise.
* gcc.dg/cpp/direct2s.c: Likewise.
* gcc.dg/noncompile/920923-1.c: Likewise.
* gcc.dg/dfp/constants-c99.c: Add -Wno-overflow.

From-SVN: r166711

13 years agomethod-format-1.mm: Adjust.
Nicola Pero [Sat, 13 Nov 2010 15:58:02 +0000 (15:58 +0000)]
method-format-1.mm: Adjust.

2010-11-13  Nicola Pero  <nicola.pero@meta-innovation.com>

        * obj-c++.dg/attributes/method-format-1.mm: Adjust.

From-SVN: r166710

13 years agoIn gcc/objc/: 2010-11-13 Nicola Pero <nicola.pero@meta-innovation.com>
Nicola Pero [Sat, 13 Nov 2010 15:53:32 +0000 (15:53 +0000)]
In gcc/objc/: 2010-11-13 Nicola Pero <nicola.pero@meta-innovation.com>

In gcc/objc/:
2010-11-13  Nicola Pero  <nicola.pero@meta-innovation.com>

        * objc-act.c (objc_get_protocol_qualified_type): detect cases
        where we are asked to attach a protocol to something which is not
        an Objective-C object type, and produce an error.

In gcc/testsuite/:
2010-11-13  Nicola Pero  <nicola.pero@meta-innovation.com>

        * objc/compile/20060406-1.m: Fixed testcase not to try to qualify
        a pointer to an arbitrary C struct with an Objective-C protocol.
        Test various valid uses of typedef with Objective-C objects and
        protocols instead.
        * objc.dg/invalid-type-1.m: New.
        * obj-c++.dg/invalid-type-1.m: New.

From-SVN: r166709

13 years agoFix a couple of formatting issues
Eric Botcazou [Sat, 13 Nov 2010 15:15:02 +0000 (15:15 +0000)]
Fix a couple of formatting issues

From-SVN: r166708

13 years agomethod-format-1.m: New test.
Paolo Bonzini [Sat, 13 Nov 2010 15:00:06 +0000 (15:00 +0000)]
method-format-1.m: New test.

2010-11-13  Paolo Bonzini  <bonzini@gnu.org>

* objc.dg/attributes/method-format-1.m: New test.

From-SVN: r166707

13 years agodarwin.h (LINK_COMMAND_SPEC_A): Update for changes to lto switches.
Iain Sandoe [Sat, 13 Nov 2010 13:02:24 +0000 (13:02 +0000)]
darwin.h (LINK_COMMAND_SPEC_A): Update for changes to lto switches.

gcc:

* config/darwin.h (LINK_COMMAND_SPEC_A): Update for changes to lto
switches.

From-SVN: r166706

13 years agodarwin-segaddr.c: New test for multiple argument c/l switch.
Iain Sandoe [Sat, 13 Nov 2010 12:56:39 +0000 (12:56 +0000)]
darwin-segaddr.c: New test for multiple argument c/l switch.

gcc/testsuite:

* gcc.dg/darwin-segaddr.c: New test for multiple argument c/l switch.

From-SVN: r166705

13 years agodon't emit debug sections until they are required
Iain Sandoe [Sat, 13 Nov 2010 12:50:37 +0000 (12:50 +0000)]
don't emit debug sections until they are required

gcc:

* dwarf2out.c (macinfo_entry): New struct.
(output_comp_unit): Emit the section start label here and flag that we
will emit an info section.
(dwarf2out_start_source_file): Save data in a macinfo entry rather than
emitting directly.
(dwarf2out_end_source_file): Likewise.
(dwarf2out_define): Likewise.
(dwarf2out_undef): Likewise.
(output_macinfo): New.
(dwarf2out_init): Do not emit debug section switches here, allocate a
vec for macinfo, when required.
(dwarf2out_finish): First switch to debug_abbrev_section here.
debug_line_section,  debug_macinfo_section, Likewise.
Check that the pubtypes table has at least one unpruned entry before
trying to emit it.

From-SVN: r166704

13 years ago* gcc.pot: Regenerate.
Joseph Myers [Sat, 13 Nov 2010 12:13:53 +0000 (12:13 +0000)]
* gcc.pot: Regenerate.

From-SVN: r166703

13 years agore PR fortran/45742 (VOLATILE has no effect)
Tobias Burnus [Sat, 13 Nov 2010 11:46:25 +0000 (12:46 +0100)]
re PR fortran/45742 (VOLATILE has no effect)

2010-11-13  Tobias Burnus  <burnus@net-b.de>

        PR fortran/45742
        * gfortran.dg/volatile12.f90: Use the right three in
        * cleanup-tree-dump.

From-SVN: r166702

13 years agore PR fortran/45742 (VOLATILE has no effect)
Tobias Burnus [Sat, 13 Nov 2010 10:29:04 +0000 (11:29 +0100)]
re PR fortran/45742 (VOLATILE has no effect)

2010-11-13  Tobias Burnus  <burnus@net-b.de>

        PR fortran/45742
        * trans-common.c (build_field): Add TREE_SIDE_EFFECTS for
        * volatile.
        * trans-decl.c (gfc_finish_var_decl): Ditto.
        (create_function_arglist): Handle volatile dummy arguments.

2010-11-13  Tobias Burnus  <burnus@net-b.de>

        PR fortran/45742
        * gfortran.dg/volatile12.f90: New.

From-SVN: r166701

13 years ago[multiple changes]
Paolo Bonzini [Sat, 13 Nov 2010 10:01:33 +0000 (10:01 +0000)]
[multiple changes]

2010-10-30  Paolo Bonzini  <bonzini@gnu.org>

PR c/20385
* c-parser.c (c_parser_next_token_starts_declaration): Rename to...
(c_parser_next_tokens_start_declaration): ... this.  Handle 2nd
token lookahead.
(c_parser_compound_statement_nostart, c_parser_label,
c_parser_for_statement, c_parser_omp_for_loop): Adjust calls.
(c_parser_declaration_or_fndef): Detect the case now matched by
c_parser_next_tokens_start_declaration, give error and correct it.

testsuite:
2010-11-13  Paolo Bonzini  <bonzini@gnu.org>

PR c/20385
* gcc.dg/decl-9.c: New.

From-SVN: r166700

13 years agoc-tree.h (enum c_typespec_kind): Add ctsk_none.
Paolo Bonzini [Sat, 13 Nov 2010 09:52:00 +0000 (09:52 +0000)]
c-tree.h (enum c_typespec_kind): Add ctsk_none.

2010-11-13  Paolo Bonzini  <bonzini@gnu.org>

* c-tree.h (enum c_typespec_kind): Add ctsk_none.
(struct c_declspecs): Replace tagdef_seen_p and type_seen_p
with typespec_kind.
* c-decl.c (build_null_declspecs): Initialize typespec_kind.
(shadow_tag_warned, check_compound_literal_type): Adjust
uses of tag_defined_p.
(declspecs_add_type): Set typespec_kind.
* c-parser.c (c_parser_declaration_or_fndef,
c_parser_declspecs, c_parser_struct_declaration,
c_parser_parameter_declaration, c_parser_type_name,
c_parser_objc_diagnose_bad_element_prefix): Adjust uses
of type_seen_p.
* c-typeck.c (c_cast_expr): Use typespec_kind instead of
tag_defined_p, pass ctsk_firstref through.

testsuite:
2010-11-13  Paolo Bonzini  <bonzini@gnu.org>

* gcc.dg/Wcxx-compat-8.c: Add testcases involving incomplete types.

From-SVN: r166699

13 years agoc-format.c (enum format_specifier_kind, [...]): New.
Paolo Bonzini [Sat, 13 Nov 2010 09:42:58 +0000 (09:42 +0000)]
c-format.c (enum format_specifier_kind, [...]): New.

gcc:
2010-11-13  Paolo Bonzini  <bonzini@gnu.org>

* c-format.c (enum format_specifier_kind, kind_descriptions): New.
(struct format_wanted_type): Replace field "name" with "kind", add
"format_start" and "format_length".
(check_format_info_main): Fill in new fields.  Fill in
FORMAT_WANTED_TYPES even for missing arguments.  Move checks
after the final NUL outside the while loop.  Do not include
width and precision modifiers in the format_start/format_length
of the main format.
(check_format_types): Remove FORMAT_START and FORMAT_LENGTH
arguments.  Compute WANTED_TYPE first so that format_type_warning
can be called for missing arguments.  Adjust calls to
format_type_warning.
(format_type_warning): Fetch as much information as possible
from format_wanted_type.  Adjust printing now that every
warning has a "descr", as well as for missing argument warnings
and to include % sign for format specifiers.

testsuite:
2010-11-13  Paolo Bonzini  <bonzini@gnu.org>

* gcc.dg/format/few-1.c: New test.
* gcc.dg/format/asm_fprintf-1.c: Adjust.
* gcc.dg/format/c90-scanf-1.c: Adjust.
* gcc.dg/format/cmn-err-1.c: Adjust.
* gcc.dg/format/dfp-printf-1.c: Adjust.
* gcc.dg/format/dfp-scanf-1.c: Adjust.
* gcc.dg/format/gcc_diag-1.c: Adjust.
* gcc.dg/format/ms_unnamed-1.c: Adjust.
* gcc.dg/format/strfmon-1.c: Adjust.
* gcc.dg/format/unnamed-1.c: Adjust.
* gcc.dg/format/xopen-2.c: Adjust.
* g++.dg/ext/builtin4.C: Adjust.
* g++.dg/ext/builtin5.C: Adjust.

From-SVN: r166698

13 years agore PR rtl-optimization/46204 (g++.dg/torture/stackalign/throw-1.C fails to compile...
Alexander Monakov [Sat, 13 Nov 2010 09:28:52 +0000 (12:28 +0300)]
re PR rtl-optimization/46204 (g++.dg/torture/stackalign/throw-1.C fails to compile on IA64)

PR rtl-optimization/46204
* sel-sched-ir.c (maybe_tidy_empty_bb): Remove second argument.
Update all callers.  Do not recompute topological order.  Adjust
fallthrough edges following a degenerate conditional jump.

From-SVN: r166697

13 years agore PR other/46332 (__cxa_demangle yields excess parentheses for function types)
Ian Lance Taylor [Sat, 13 Nov 2010 01:21:12 +0000 (01:21 +0000)]
re PR other/46332 (__cxa_demangle yields excess parentheses for function types)

libiberty/:
PR other/46332
* cp-demangle.c (d_print_function_type): Don't print parentheses
if there are no modifiers to print.
* testsuite/demangle-expected: Tweak one test case, add another.
libstdc++/:
* testsuite/abi/demangle/abi_examples/14.cc (main): Change
expected demangling.

From-SVN: r166695

13 years agoDaily bump.
GCC Administrator [Sat, 13 Nov 2010 00:18:07 +0000 (00:18 +0000)]
Daily bump.

From-SVN: r166694

13 years ago* gcc.pot: Regenerate.
Joseph Myers [Fri, 12 Nov 2010 23:37:09 +0000 (23:37 +0000)]
* gcc.pot: Regenerate.

From-SVN: r166690

13 years agoopts-common.c (control_warning_option): New.
Joseph Myers [Fri, 12 Nov 2010 23:30:42 +0000 (23:30 +0000)]
opts-common.c (control_warning_option): New.

* opts-common.c (control_warning_option): New.
* opts.c (set_default_handlers): New.
(decode_options): Use set_default_handlers and
control_warning_option.
(common_handle_option): Update call to enable_warning_as_error.
(enable_warning_as_error): Take gcc_options parameters.  Use
control_warning_option.
* opts.h (set_default_handlers, control_warning_option): Declare.

c-family:
* c-common.h (c_family_lang_mask): Declare.
* c-opts.c (c_family_lang_mask): Make extern.
* c-pragma.c (handle_pragma_diagnostic): Use
control_warning_option.

testsuite:
* gcc.dg/pragma-diag-2.c: New test.

From-SVN: r166689

13 years agoMakefile.in (OPTS_H): Define.
Joseph Myers [Fri, 12 Nov 2010 23:26:56 +0000 (23:26 +0000)]
Makefile.in (OPTS_H): Define.

* Makefile.in (OPTS_H): Define.
(c-decl.o, c-family/c-common.o, c-family/c-opts.o,
c-family/c-pch.o, c-family/c-pragma.o, gcc.o, gccspec.o,
cppspec.o, options.o, gcc-options.o, lto-opts.o, opts.o,
opts-common.o, toplev.o, passes.o, matrix-reorg.o,
ipa-struct-reorg.o, PLUGIN_HEADERS): Use $(OPTS_H).
* gcc.c (driver_handle_option): Take location_t parameter.
(process_command, do_self_spec): Update calls to
read_cmdline_option.
* langhooks-def.h (lhd_handle_option): Take location_t parameter.
* langhooks.c (lhd_handle_option): Take location_t parameter.
* langhooks.h (handle_option): Take location_t parameter.
* lto-opts.c (lto_reissue_options): Update call to set_option.
* opts-common.c (handle_option): Make static.  Take location_t
parameter and pass it to other functions.
(handle_generated_option): Take location_t parameter and pass it
to other functions.
(read_cmdline_option): Take location_t parameter and pass it to
other functions.  Use warning_at and error_at.
(set_option): Take location_t parameter and pass it to other
functions.
* opts.c (common_handle_option): Take location_t parameter and
pass it to other functions.
(enable_warning_as_error): Make static.  Take location_t parameter
and pass it to other functions.
(lang_handle_option): Take location_t parameter and pass it to
other functions.
(target_handle_option): Take location_t parameter.
(read_cmdline_options, maybe_default_option,
maybe_default_options, default_options_optimization,
decode_options): Take location_t parameter and pass it to other
functions.
* opts.h: Include input.h.
(struct cl_option_handler_func, decode_options, set_option,
handle_generated_option, read_cmdline_option): Take location_t
parameters.
(handle_option, enable_warning_as_error): Remove.
* toplev.c (toplev_main): Update call to decode_options.

ada:
* gcc-interface/Make-lang.in (ada/misc.o): Use $(OPTS_H).
* gcc-interface/misc.c (gnat_handle_option): Take location_t
parameter.

c-family:
* c-common.c (parse_optimize_options): Update call to
decode_options.
* c-common.h (c_common_handle_option): Update prototype.
* c-opts.c (c_common_handle_option): Take location_t parameter and
pass it to other functions.

cp:
* Make-lang.in (g++spec.o): Use $(OPTS_H).

fortran:
* Make-lang.in (gfortranspec.o): Use $(OPTS_H).
* gfortran.h (gfc_handle_option): Take location_t parameter.
* options.c (gfc_handle_option): Take location_t parameter.

java:
* Make-lang.in (jvspec.o, java/lang.o): Use $(OPTS_H).
* lang.c (java_handle_option): Take location_t parameter.

lto:
* Make-lang.in (lto/lto.o): Use $(OPTS_H).
* lto-lang.c (lto_handle_option): Take location_t parameter.

From-SVN: r166688

13 years agore PR fortran/45794 (ICE: Segmentation fault in gfc_conv_procedure_call)
Jerry DeLisle [Fri, 12 Nov 2010 23:17:24 +0000 (23:17 +0000)]
re PR fortran/45794 (ICE: Segmentation fault in gfc_conv_procedure_call)

2010-11-12  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR fortran/45794
* gfortran.dg/optional_mask.f90: New test.

From-SVN: r166687

13 years agore PR fortran/45794 (ICE: Segmentation fault in gfc_conv_procedure_call)
Jerry DeLisle [Fri, 12 Nov 2010 23:07:18 +0000 (23:07 +0000)]
re PR fortran/45794 (ICE: Segmentation fault in gfc_conv_procedure_call)

2010-11-12  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR fortran/45794
trans-expr.c (gfc_conv_procedure_call): Avoid NULL array spec.

From-SVN: r166686

13 years agoCore 1135, 1136, 1145, 1149
Ville Voutilainen [Fri, 12 Nov 2010 22:44:18 +0000 (17:44 -0500)]
Core 1135, 1136, 1145, 1149

Core 1135, 1136, 1145, 1149
* method.c (defaultable_fn_check): Do not disallow defaulting a
non-public or explicit special member function on its first
declaration.

From-SVN: r166685

13 years agoAdd -enable-cloog-backend.
Tobias Grosser [Fri, 12 Nov 2010 22:08:57 +0000 (22:08 +0000)]
Add -enable-cloog-backend.

* config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
define the cloog backend to use. Furthermore, only pass the ppllibs
to the configure checks, if necessary.
*configure: Regenerate.

From-SVN: r166684

13 years agoRemove warning because of CLooG isl/ppl difference
Tobias Grosser [Fri, 12 Nov 2010 22:08:48 +0000 (22:08 +0000)]
Remove warning because of CLooG isl/ppl difference

  * graphite-cloog-util.c (oppose_constraint,
  cloog_matrix_to_ppl_constraint,
  new_Constraint_System_from_Cloog_Matrix): Explicitly cast to int as
  CLooG isl uses unsigned integers. This triggered a warning.

From-SVN: r166683

13 years agoImprove check for CLooG PPL Legacy.
Tobias Grosser [Fri, 12 Nov 2010 22:08:38 +0000 (22:08 +0000)]
Improve check for CLooG PPL Legacy.

* config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
* configure: regenerate

From-SVN: r166682

13 years agore PR bootstrap/46456 (cppbuiltin.o fails to build for arm-eabi)
Joern Rennecke [Fri, 12 Nov 2010 21:43:54 +0000 (21:43 +0000)]
re PR bootstrap/46456 (cppbuiltin.o fails to build for arm-eabi)

PR bootstrap/46456
* cppbuiltin.c (define_builtin_macros_for_type_sizes): Split assert.

From-SVN: r166678

13 years agore PR target/46435 (cris-elf --enable-werror-always build fails)
Joern Rennecke [Fri, 12 Nov 2010 20:52:33 +0000 (20:52 +0000)]
re PR target/46435 (cris-elf --enable-werror-always build fails)

PR target/46435
* config/cris/cris.c (saved_regs_mentioned): Delete.
(cris_reload_address_legitimized): Cast itype to enum reload_type.
Remove unused variable op0p.
(cris_rtx_costs): Cast argument 2 to rtx_cost to enum rtx_code.
(cris_emit_movem_store): Use add_reg_note.

From-SVN: r166673

13 years agore PR target/46438 (xtensa-elf --enable-werror-always build fails)
Joern Rennecke [Fri, 12 Nov 2010 20:07:34 +0000 (20:07 +0000)]
re PR target/46438 (xtensa-elf --enable-werror-always build fails)

PR target/46438
* config/xtensa/xtensa.c (xtensa_expand_nonlocal_goto): Use LCT_NORMAL.
(xtensa_setup_frame_addresses, xtensa_trampoline_init): Likewise.
(xtensa_function_arg_1): De-constify cum.
(xtensa_expand_prologue): Use add_reg_note.

From-SVN: r166672

13 years agore PR target/46437 (mcore-elf --enable-werror-always build fails)
Joern Rennecke [Fri, 12 Nov 2010 19:35:17 +0000 (19:35 +0000)]
re PR target/46437 (mcore-elf --enable-werror-always build fails)

PR target/46437
* config/mcore/mcore.c (layout_mcore_frame): Remove unused variable
localreg.

From-SVN: r166671

13 years agoFix typo
Tobias Grosser [Fri, 12 Nov 2010 18:29:37 +0000 (18:29 +0000)]
Fix typo

* config/cloog.m4: Fix typo.  verison -> version.
* configure: Regenerate.

From-SVN: r166670

13 years agoPass PPL libraries to CLooG version check
Tobias Grosser [Fri, 12 Nov 2010 18:29:27 +0000 (18:29 +0000)]
Pass PPL libraries to CLooG version check

* config/cloog.m4: Pass ppl libraries to the CLooG version check.
* configure: Regenerate.

From-SVN: r166669

13 years agofunction.c (expand_function_end): Set the locator of the prologue on the stack checki...
Eric Botcazou [Fri, 12 Nov 2010 18:17:41 +0000 (18:17 +0000)]
function.c (expand_function_end): Set the locator of the prologue on the stack checking insns.

* function.c (expand_function_end): Set the locator of the prologue on
the stack checking insns.

From-SVN: r166668

13 years agore PR c++/39415 (static_cast used as downcast can silently lose const)
James Dennett [Fri, 12 Nov 2010 18:00:21 +0000 (18:00 +0000)]
re PR c++/39415 (static_cast used as downcast can silently lose const)

PR c++/39415
* typeck.c (build_static_cast_1): Convert to the target type
when doing static_cast<cv Derived*>(Base*).

From-SVN: r166667

13 years agoxtensa: Convert to fma.
Richard Henderson [Fri, 12 Nov 2010 17:53:36 +0000 (09:53 -0800)]
xtensa: Convert to fma.

        * config.gcc [xtensa] (extra_options): Add fused-madd.opt.
        * config/xtensa/xtensa.opt (mfused-madd): Remove.
        * config/xtensa/xtensa.c (TARGET_DEFAULT_TARGET_FLAGS): Remove
        MASK_FUSED_MADD.
        * config/xtensa/xtensa.md (fmasf4): Rename from muladdsf3; use
        * fma.
        (fnmasf4): Rename from mulsubsf3; use fma.

From-SVN: r166666

13 years agore PR target/46450 (xstormy16-elf --enable-werror-always build fails)
Joern Rennecke [Fri, 12 Nov 2010 17:46:02 +0000 (17:46 +0000)]
re PR target/46450 (xstormy16-elf --enable-werror-always build fails)

PR target/46450
* config/stormy16/stormy16.c (xstormy16_expand_prologue):
Use add_reg_note.
(xstormy16_function_arg): Dereference cum.
(xstormy16_expand_builtin): Use expand_normal.
Change type of omode to enum machine_mode.
(combine_bnp): Rename and to and_insn.

From-SVN: r166665

13 years agore PR target/46428 (moxie-elf --enable-werror-always build fails)
Joern Rennecke [Fri, 12 Nov 2010 17:43:21 +0000 (17:43 +0000)]
re PR target/46428 (moxie-elf --enable-werror-always build fails)

PR target/46428
* config/moxie/moxie.c (moxie_expand_prologue): Remove unused variables.
* config/moxie/moxie.h (HARD_REGNO_OK_FOR_BASE_P): Use unsigned
comparison.

Co-Authored-By: Richard Henderson <rth@redhat.com>
From-SVN: r166664

13 years agore PR target/46431 (fr30-elf --enable-werror-always build fails)
Joern Rennecke [Fri, 12 Nov 2010 17:34:04 +0000 (17:34 +0000)]
re PR target/46431 (fr30-elf --enable-werror-always build fails)

PR target/46431
* config/fr30/fr30.md (*movsf_constant_store): Remove duplicated
assignment.

From-SVN: r166663

13 years agore PR middle-end/44769 (warning for split_double when HOST_BITS_PER_WIDE_INT < BITS_P...
Joern Rennecke [Fri, 12 Nov 2010 17:24:16 +0000 (17:24 +0000)]
re PR middle-end/44769 (warning for split_double when HOST_BITS_PER_WIDE_INT < BITS_PER_WORD)

PR middle-end/44769
* final.c (split_double): Don't use BITS_PER_WORD directly in
shift count.

From-SVN: r166662

13 years agore PR target/46412 (bfin-elf --enable-werror-always build fails)
Joern Rennecke [Fri, 12 Nov 2010 17:15:18 +0000 (17:15 +0000)]
re PR target/46412 (bfin-elf --enable-werror-always build fails)

PR target/46412
* config/bfin/bfin-protos.h (bfin_local_alignment): Update prototype.
* config/bfin/bfin.c: Include sel-sched.h .
(bfin_cpus): Use BFIN_CPU_UNKNOWN for last initializer element.
(expand_interrupt_handler_prologue): Remove unused variable insn.
(bfin_load_pic_reg): Likewise.
(bfin_rtx_costs): Make code / outer_code variables of type
enum rtx_code, copied from re-named parameters.
(bfin_local_alignment): Change align argument and return type
to unsigned.
(bfin_adjust_cost): Remove unused variable insn_type.
Declare variables at start of block.
(struct loop_info): Rename to...
(struct loop_info_d).
(workaround_rts_anomaly): Change type of icode to int.
(harmless_null_pointer_p): Cast REGNO (..) to int before comparison
with int-typed variable.
(note_np_check_stores): Likewise.
(trapping_loads_p): Remove unused variable pat.
(bfin_expand_binop_builtin): Use expand_normal.
(bfin_expand_unop_builtin): Likewise.
(bfin_expand_builtin): Likewise.
Set tmode before use.

From-SVN: r166661

13 years agore PR bootstrap/44756 ([meta-bug] --enable-werror-always issues)
Joern Rennecke [Fri, 12 Nov 2010 17:11:06 +0000 (17:11 +0000)]
re PR bootstrap/44756 ([meta-bug] --enable-werror-always issues)

PR bootstrap/44756
PR build/44767
* doc/tm.texi.in (LOCAL_ALIGNMENT): State that the type, if any,
should be unsigned.
(STACK_SLOT_ALIGNMENT, LOCAL_DECL_ALIGNMENT, PUSH_ROUNDING): Likewise.
* doc/tm.texi: Regenerate.

From-SVN: r166660

13 years agoopts-common.c (decode_cmdline_option): Initialize separate_args.
Pat Haugen [Fri, 12 Nov 2010 16:36:36 +0000 (16:36 +0000)]
opts-common.c (decode_cmdline_option): Initialize separate_args.

* opts-common.c (decode_cmdline_option): Initialize separate_args.

From-SVN: r166658

13 years agoinvoke.texi (early-inlining-insns): Update default.
Jan Hubicka [Fri, 12 Nov 2010 16:29:10 +0000 (17:29 +0100)]
invoke.texi (early-inlining-insns): Update default.

* doc/invoke.texi (early-inlining-insns): Update default.
* params.def (early-inlining-insns): Default to 10.

From-SVN: r166657

13 years agoaix.h: #undef TARGET_AIX_OS before #define.
Olivier Hainque [Fri, 12 Nov 2010 16:04:12 +0000 (16:04 +0000)]
aix.h: #undef TARGET_AIX_OS before #define.

        * config/rs6000/aix.h: #undef TARGET_AIX_OS before #define.

From-SVN: r166654

13 years agore PR rtl-optimization/46433 (var-tracking.c doesn't include tm_p.h)
Joern Rennecke [Fri, 12 Nov 2010 13:20:28 +0000 (13:20 +0000)]
re PR rtl-optimization/46433 (var-tracking.c doesn't include tm_p.h)

        PR rtl-optimization/46433
        * var-tracking.c: Include tm_p.h .

From-SVN: r166651

13 years agogcc:
Rainer Orth [Fri, 12 Nov 2010 10:55:34 +0000 (10:55 +0000)]
gcc:

* config/mips/iris6.h [!IRIX_USING_GNU_LD]
(SUPPORTS_INIT_PRIORITY): Define.

gcc/testsuite:
* lib/prune.exp (prune_gcc_output): Ignore IRIX 6 linker multiline
warning.
* g++.dg/abi/packed1.C (struct INNER): Ignore warning on
mips-sgi-irix*.
* g++.dg/cpp/_Pragma1.C: Skip on mips-sgi-irix*.
* gcc.target/mips/call-3.c: Add dg-require-visibility.

From-SVN: r166648

13 years agore PR target/46430 (avr-elf --enable-werror-always build fails)
Joern Rennecke [Fri, 12 Nov 2010 10:09:39 +0000 (10:09 +0000)]
re PR target/46430 (avr-elf --enable-werror-always build fails)

PR target/46430
* config/avr/avr-protos.h (avr_return_addr_rtx): Update prototype.
* config/avr/driver-avr.c (avr_device_to_arch): Always return value.
(avr_device_to_data_start, avr_device_to_startfiles): Likewise.
(avr_device_to_devicelib): Likewise.
* config/avr/avr.md (zero_extendqihi2): Put variable declarations
into block.
(zero_extendqisi2, zero_extendhisi2, zero_extendqidi2): Likewise.
(zero_extendhidi2, zero_extendsidi2): Likewise.
* config/avr/avr.c (avr_num_arg_regs): Constify type.
(avr_return_addr_rtx): De-constify tem.
(avr_rotate_bytes): Move declarations to start of block.
Don't use variable length array.
Put nested if/else into block.

From-SVN: r166647

13 years agore PR debug/46375 (-fcompare-debug failure (length) with -O -fgcse -fno-tree-dominato...
Eric Botcazou [Fri, 12 Nov 2010 09:57:20 +0000 (09:57 +0000)]
re PR debug/46375 (-fcompare-debug failure (length) with -O -fgcse -fno-tree-dominator-opts)

PR debug/46375
* emit-rtl.c (remove_insn): Do not mark BBs upon debug insns.

From-SVN: r166646

13 years agore PR lto/46376 (LTO, MinGW and virtual base classes don't work together)
Rodrigo Rivas Costa [Fri, 12 Nov 2010 09:06:37 +0000 (09:06 +0000)]
re PR lto/46376 (LTO, MinGW and virtual base classes don't work together)

2010-11-11  Rodrigo Rivas Costa  <rodrigorivascosta@gmail.com>

        PR lto/46376
        * lto-symtab.c (lto_symtab_resolve_replaceable_p): Use DECL_ONE_ONLY.

From-SVN: r166645

13 years agore PR c/44782 (implement -ferror-limit=)
Nathan Froyd [Fri, 12 Nov 2010 03:38:15 +0000 (03:38 +0000)]
re PR c/44782 (implement -ferror-limit=)

gcc/
PR c/44782
* common.opt (fmax-errors=): New option.
* opts.c (common_handle_option) [OPT_fmax_errors_]: Handle it.
* diagnostic.h (struct diagnostic_context): Add max_errors field.
* diagnostic.c (diagnostic_initialize): Initialize it.
(diagnostic_action_after_output): Exit if more than max_errors
have been output.
* doc/invoke.texi (Warning Options): Add -fmax-errors.
(-fmax-errors): Document.

gcc/fortran/
PR c/44782
* options.c (gfc_post_options): Initialize gfc_option.max_errors.
(gfc_handle_option) [OPT_fmax_errors_]: Remove.
* lang.opt (fmax-errors=): Remove.

gcc/testsuite/
PR c/44782
* c-c++-common/fmax-errors.c: New test.

From-SVN: r166644

13 years ago* optabs.c (init_optabs): Init {fma,fms,fnma,fnms}_optab properly.
Richard Henderson [Fri, 12 Nov 2010 01:10:12 +0000 (17:10 -0800)]
* optabs.c (init_optabs): Init {fma,fms,fnma,fnms}_optab properly.

From-SVN: r166643

13 years agoi386: Convert from -mfused-madd to -ffp-contract.
Richard Henderson [Fri, 12 Nov 2010 01:07:49 +0000 (17:07 -0800)]
i386: Convert from -mfused-madd to -ffp-contract.

* config/fused-madd.opt: New file.
* config.gcc [i386-*, x86_64-*] (extra_options): Use it.
* config/i386/i386.c (ix86_extra_costs): Handle FMA.
(TARGET_DEFAULT_TARGET_FLAGS): Remove MASK_FUSED_MADD.
* config/i386/i386.opt (mfused-madd): Remove.
* config/i386/sse.md (split_fma): Remove.
(split_fms, split_fnma, split_fnms): Remove.

From-SVN: r166642

13 years agoDaily bump.
GCC Administrator [Fri, 12 Nov 2010 00:18:31 +0000 (00:18 +0000)]
Daily bump.

From-SVN: r166641

13 years ago* gcc.dg/tree-ssa/inline-6.c: Fix testcase.
Jan Hubicka [Fri, 12 Nov 2010 00:08:14 +0000 (01:08 +0100)]
* gcc.dg/tree-ssa/inline-6.c: Fix testcase.

From-SVN: r166637

13 years agoinline-5.c: Fix testcase.
Jan Hubicka [Fri, 12 Nov 2010 00:00:36 +0000 (01:00 +0100)]
inline-5.c: Fix testcase.

* gcc.dg/tree-ssa/inline-5.c: Fix testcase.
* gcc.dg/tree-ssa/inline-6.c: Remove bogus testcase.

From-SVN: r166636

13 years agore PR target/46088 (ICE: SIGSEGV in ix86_binary_operator_ok (i386.c:15025) with ...
Jakub Jelinek [Thu, 11 Nov 2010 23:51:18 +0000 (00:51 +0100)]
re PR target/46088 (ICE: SIGSEGV in ix86_binary_operator_ok (i386.c:15025) with -Os -fnon-call-exceptions -fpeel-loops)

PR target/46088
* config/i386/i386.md (*ashl<mode>3_cconly,
*<shiftrt_insn><mode>3_cconly): Don't use ix86_binary_operator_ok,
change nonimmediate_operand predicate to register_operand.

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

From-SVN: r166635

13 years agoMakefile.in (gengtype-lex.c): Include bconfig.h first.
Paolo Bonzini [Thu, 11 Nov 2010 23:44:44 +0000 (23:44 +0000)]
Makefile.in (gengtype-lex.c): Include bconfig.h first.

2010-11-11  Paolo Bonzini  <bonzini@gnu.org>

        * Makefile.in (gengtype-lex.c): Include bconfig.h first.

From-SVN: r166634

13 years agosymbol.c (verify_bind_c_derived_type): Accept BIND(C) on an empty derived type.
Steven G. Kargl [Thu, 11 Nov 2010 23:34:05 +0000 (23:34 +0000)]
symbol.c (verify_bind_c_derived_type): Accept BIND(C) on an empty derived type.

2010-11-10  Steven G. Kargl <kargl@gcc.gnu.org>

* symbol.c (verify_bind_c_derived_type):  Accept BIND(C) on an empty
derived type.

2010-11-10  Steven G. Kargl <kargl@gcc.gnu.org>

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

From-SVN: r166633

13 years agoopts.c (finish_options): Do not error on -flto-partition alone.
Jan Hubicka [Thu, 11 Nov 2010 23:29:45 +0000 (00:29 +0100)]
opts.c (finish_options): Do not error on -flto-partition alone.

* opts.c (finish_options): Do not error on -flto-partition alone.
* options.c (gfc_post_options): Remove flag_whopr.

From-SVN: r166632

13 years agore PR fortran/46413 ([OOP] ICE when printing a polymorphic type)
Tobias Burnus [Thu, 11 Nov 2010 23:07:23 +0000 (00:07 +0100)]
re PR fortran/46413 ([OOP] ICE when printing a polymorphic type)

2010-11-11  Tobias Burnus  <burnus@net-b.de>

        PR fortran/46413
        * resolve.c (resolve_transfer): Reject I/O transfer of
        polymorphic type.

        PR fortran/46205
        * resolve.c (resolve_code): Reject nonscalar FORALL masks.

2010-11-11  Tobias Burnus  <burnus@net-b.de>

        PR fortran/46413
        * gfortran.dg/class_31.f90: New.

        PR fortran/46205
        * gfortran.dg/forall_14.f90: New.

From-SVN: r166631

13 years ago* config/bootstrap-lto: Use -flto.
Jan Hubicka [Thu, 11 Nov 2010 23:06:25 +0000 (00:06 +0100)]
* config/bootstrap-lto: Use -flto.

From-SVN: r166630

13 years agore PR fortran/46325 (gfortran.dg/char_initialiser_actual.f90 FAILs with -fstack-prote...
Jakub Jelinek [Thu, 11 Nov 2010 23:02:03 +0000 (00:02 +0100)]
re PR fortran/46325 (gfortran.dg/char_initialiser_actual.f90 FAILs with -fstack-protector)

2010-11-11  Jakub Jelinek <jakub@redhat.com>
            Tobias Burnus <burnus@net-b.de>

    PR fortran/46325
    * gfortran.dg/char_initialiser_actual.f90: Make test case valid.

Co-Authored-By: Tobias Burnus <burnus@net-b.de>
From-SVN: r166628

13 years agoinvoke.texi (-fwhopr): Merge into -flto section.
Jan Hubicka [Thu, 11 Nov 2010 22:54:53 +0000 (23:54 +0100)]
invoke.texi (-fwhopr): Merge into -flto section.

* doc/invoke.texi (-fwhopr): Merge into -flto section.
(-flto-partition): Document none.
* gcc.c (LINK_COMMAND_SPEC): Remove -fwhopr.
* lto-wrapper.c: Update comment.
(run_gcc): Update LTO option parsing.
* opts.c (finish_options): add support -flto-partition=none
(common_handle_option): Remove fwhopr.
* common.opt: Turn fwhopr into flto.
* collect2.c (main): Update option handling.
* cgraphunit.c (cgraph_decide_is_function_needed): Remove flag_whopr.
* ipa-split.c (execute_split_functions): Remove flag_whopr.
* ipa.c (function_and_variable_visibility): Remove flag_whopr.
* ipa-prop.c (ipa_compute_jump_functions): Remove flag_whopr.
* varpool.c (decide_is_variable_needed): Remove flag_whopr.

* gcc.dg/20081223-1.c: Update LTO options.
* gcc.dg/lto/20090206-1_0.c: Update LTO options.
* gcc.dg/lto/20081118_0.c: Update LTO options.
* gcc.dg/lto/ipareference_0.c: Update LTO options.
* gcc.dg/lto/20100423-2_0.c: Update LTO options.
* gcc.dg/lto/20081201-1_0.c: Update LTO options.
* gcc.dg/lto/ipacp_0.c: Update LTO options.
* gcc.dg/lto/20090116_0.c: Update LTO options.
* gcc.dg/lto/20091015-1_0.c: Update LTO options.
* gcc.dg/lto/20090126-2_0.c: Update LTO options.
* gcc.dg/lto/20081202-2_0.c: Update LTO options.
* gcc.dg/lto/20081204-1_0.c: Update LTO options.
* gcc.dg/lto/const-uniq_0.c: Update LTO options.
* gcc.dg/lto/20081224_0.c: Update LTO options.
* gcc.dg/lto/20090219_0.c: Update LTO options.
* gcc.dg/lto/ipareference2_0.c: Update LTO options.
* gcc.dg/lto/20090206-2_0.c: Update LTO options.
* gcc.dg/lto/20081115_0.c: Update LTO options.
* gcc.dg/lto/20081201-2_0.c: Update LTO options.
* gcc.dg/lto/20081120-2_0.c: Update LTO options.
* gcc.dg/lto/materialize-1_0.c: Update LTO options.
* gcc.dg/lto/20090126-1_0.c: Update LTO options.
* gcc.dg/lto/20081202-1_0.c: Update LTO options.
* gcc.dg/lto/noreturn-1_0.c: Update LTO options.
* g++.dg/20090107-1.C: Update LTO options.
* g++.dg/lto/pr45679-2_0.C: Update LTO options.
* g++.dg/lto/20081123_0.C: Update LTO options.
* g++.dg/lto/20090313_0.C: Update LTO options.
* g++.dg/lto/20081125_0.C: Update LTO options.
* g++.dg/lto/20081109-1_0.C: Update LTO options.
* g++.dg/lto/20081219_0.C: Update LTO options.
* g++.dg/lto/20100724-1_0.C: Update LTO options.
* g++.dg/lto/20081204-1_0.C: Update LTO options.
* g++.dg/lto/20090303_0.C: Update LTO options.
* g++.dg/lto/20100723-1_0.C: Update LTO options.
* g++.dg/lto/pr45679-1_0.C: Update LTO options.
* g++.dg/lto/20090128_0.C: Update LTO options.
* g++.dg/lto/20081204-2_0.C: Update LTO options.
* g++.dg/lto/20090302_0.C: Update LTO options.
* g++.dg/lto/20081119-1_0.C: Update LTO options.
* g++.dg/lto/20081118_0.C: Update LTO options.
* g++.dg/20090121-1.C: Update LTO options.
* objc.dg/lto/lto.exp: Update LTO options.
* lib/lto.exp: Update LTO options.
* lib/gcc-dg.exp: Update LTO options.
* lib/c-torture.exp: Update LTO options.
* obj-c++.dg/lto/lto.exp: Update LTO options.

From-SVN: r166625

13 years agore PR tree-optimization/40436 (0.5% code size regression caused by r147852)
Jan Hubicka [Thu, 11 Nov 2010 22:08:26 +0000 (23:08 +0100)]
re PR tree-optimization/40436 (0.5% code size regression caused by r147852)

PR tree-optimize/40436
* gcc.dg/tree-ssa/inline-5.c: New testcase.
* gcc.dg/tree-ssa/inline-6.c: New testcase.

* ipa-inline.c (likely_eliminated_by_inlining_p): Rename to ...
(eliminated_by_inlining_prob): ... this one; return 50% probability for
SRA.
(estimate_function_body_sizes): Update use of eliminated_by_inlining_prob;
estimate static function size for 2 instructions.

From-SVN: r166624

13 years agoresolve.c (resolve_procedure_interface): Copy 'is_bind_c' attribute.
Janus Weil [Thu, 11 Nov 2010 21:44:15 +0000 (22:44 +0100)]
resolve.c (resolve_procedure_interface): Copy 'is_bind_c' attribute.

2010-11-11  Janus Weil  <janus@gcc.gnu.org>

* resolve.c (resolve_procedure_interface): Copy 'is_bind_c' attribute.

2010-11-11  Janus Weil  <janus@gcc.gnu.org>

* gfortran.dg/proc_decl_24.f90: New.

From-SVN: r166623

13 years agoSupport official CLooG.org versions.
Andreas Simbuerger [Thu, 11 Nov 2010 21:33:24 +0000 (21:33 +0000)]
Support official CLooG.org versions.

2010-11-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>

* configure.ac: Support official CLooG.org versions.
* configure: Regenerate.
* config/cloog.m4: New.

From-SVN: r166622

13 years agore PR target/44749 (mep-elf fails to build)
Joern Rennecke [Thu, 11 Nov 2010 19:11:44 +0000 (19:11 +0000)]
re PR target/44749 (mep-elf fails to build)

        PR target/44749
        * config/mep/mep-protos.h (mep_legitimize_reload_address): Always
        declare.  Change type of argument four to type int.
        (mep_secondary_input_reload_class): Returns enum reg_class.
        (mep_secondary_output_reload_class): Likewise.
        (mep_function_value): Change types of arguments to cont_tree.
        * config/mep/mep.c (mep_legitimize_reload_address): Change type of
        argument four to type int.
        (mep_secondary_input_reload_class): Returns enum reg_class.
        (mep_secondary_output_reload_class): Likewise.
        (mep_function_value): Change types of arguments to cont_tree.
        * config/mep/mep.h (REGNO_REG_CLASS): Cast return value of
        mep_regno_reg_class to enum reg_class.

From-SVN: r166614

13 years agoFixed my email address in 3 of my ChangeLog entries for the past couple of months
Nicola Pero [Thu, 11 Nov 2010 19:01:45 +0000 (19:01 +0000)]
Fixed my email address in 3 of my ChangeLog entries for the past couple of months

From-SVN: r166613

13 years agoIn gcc/objc/: 2010-11-11 Nicola Pero <nicola.pero@meta-innovation.com>
Nicola Pero [Thu, 11 Nov 2010 18:58:43 +0000 (18:58 +0000)]
In gcc/objc/: 2010-11-11 Nicola Pero <nicola.pero@meta-innovation.com>

In gcc/objc/:
2010-11-11  Nicola Pero  <nicola.pero@meta-innovation.com>

        * objc-act.c (objc_add_property_declaration): Check that the type
        of a property and of an inherited property match.
        (objc_maybe_build_component_ref): Tidied up indentation and
        comments.
        (objc_common_type): Added new type of check (-5).  If an unknown
        class is involved in a comparison, try to look up its interface.
        (objc_add_synthesize_declaration_for_property): Check that the
        property to synthesize and the instance variable to use have the
        same type.

In gcc/testsuite/:
2010-11-11  Nicola Pero  <nicola.pero@meta-innovation.com>

        * objc.dg/property/at-property-20.m: New.
        * objc.dg/property/synthesize-8.m: New.
        * obj-c++.dg/property/at-property-20.m: New.
        * obj-c++.dg/property/synthesize-8.mm: New.

From-SVN: r166612

13 years agotree-ssa-math-opts.c (convert_mult_to_fma): Do not verify that the target has the...
Richard Henderson [Thu, 11 Nov 2010 18:42:35 +0000 (10:42 -0800)]
tree-ssa-math-opts.c (convert_mult_to_fma): Do not verify that the target has the exact fma operation that we matched.

* tree-ssa-math-opts.c (convert_mult_to_fma): Do not verify
that the target has the exact fma operation that we matched.

From-SVN: r166611

13 years agoreginfo.c (fix_register): Avoid inserting English word in diagnostic sentence.
Joseph Myers [Thu, 11 Nov 2010 18:28:46 +0000 (18:28 +0000)]
reginfo.c (fix_register): Avoid inserting English word in diagnostic sentence.

* reginfo.c (fix_register): Avoid inserting English word in
diagnostic sentence.  Use %qs for quoting and %'.

From-SVN: r166610

13 years agoSupport Intel processor family 6, model 0x2c.
H.J. Lu [Thu, 11 Nov 2010 17:30:39 +0000 (17:30 +0000)]
Support Intel processor family 6, model 0x2c.

2010-11-11  H.J. Lu  <hongjiu.lu@intel.com>

* config/i386/driver-i386.c (host_detect_local_cpu): Support
Intel processor family 6, model 0x2c.

From-SVN: r166607

13 years agoopts.c (warning_as_error_callback, [...]): Remove.
Joseph Myers [Thu, 11 Nov 2010 16:54:49 +0000 (16:54 +0000)]
opts.c (warning_as_error_callback, [...]): Remove.

* opts.c (warning_as_error_callback,
register_warning_as_error_callback): Remove.
(enable_warning_as_error): Don't use warning_as_error_callback.
* opts.h (register_warning_as_error_callback): Remove.

c-family:
* c-opts.c (warning_as_error_callback): Remove.
(c_common_initialize_diagnostics): Don't call
register_warning_as_error_callback.
(c_common_handle_option): Handle -Werror=normalized= here.

testsuite:
* gcc.dg/cpp/warn-normalized-3.c: Update expected note text.

From-SVN: r166606

13 years agoRecognize -(a * b) + c -> fma(-a,b,c).
Richard Henderson [Thu, 11 Nov 2010 16:20:54 +0000 (08:20 -0800)]
Recognize -(a * b) + c -> fma(-a,b,c).

* tree-ssa-math-opts.c (convert_mult_to_fma): Handle a NEGATE_EXPR
in between the MULT and the PLUS/MINUS.

From-SVN: r166605

13 years agore PR middle-end/46388 (ICE in int_mode_for_mode, at stor-layout.c:493)
Jakub Jelinek [Thu, 11 Nov 2010 15:48:39 +0000 (16:48 +0100)]
re PR middle-end/46388 (ICE in int_mode_for_mode, at stor-layout.c:493)

PR middle-end/46388
* expr.c (expand_assignment): If to_rtx is a VOIDmode MEM, use
BLKmode mode for it.
(expand_expr_real_1): Similarly for op0.

* gcc.c-torture/compile/pr46388.c: New test.

From-SVN: r166603

13 years agolto.exp (lto-get-options-main): Support optional target selector for dg-suppress...
Rainer Orth [Thu, 11 Nov 2010 14:08:47 +0000 (14:08 +0000)]
lto.exp (lto-get-options-main): Support optional target selector for dg-suppress-ld-options.

gcc/testsuite:
* lib/lto.exp (lto-get-options-main): Support optional target
selector for dg-suppress-ld-options.

gcc:
* doc/sourcebuild.texi (LTO Testing, dg-suppress-ld-options):
Document optional target selector.

From-SVN: r166602

13 years agore PR bootstrap/46397 (lto-plugin.c does not build on Solaris 10/SPARC)
Dave Korn [Thu, 11 Nov 2010 13:33:59 +0000 (13:33 +0000)]
re PR bootstrap/46397 (lto-plugin.c does not build on Solaris 10/SPARC)

PR bootstrap/46397
PR bootstrap/46362
* configure.ac: Add AC_TYPE_INT64_T test.
* config.h.in: Regenerate.
* configure: Likewise.
* lto-plugin.c (debug): Use char not bool.
(nop): Likewise.
(check_1): Rename from check, and use int not bool for gate argument.
(check): Macro wrapper for the above to coerce gate argument into
boolean-valued integer in case it has pointer type.
(parse_table_entry): Use 0 not false.
(claim_file_handler): Avoid use of PRIx64 by splitting 64-bit size
into two 32-bit parts and printing as hex ints.

From-SVN: r166601

13 years agolto-streamer-out.c (write_symbol): Use int_size_in_bytes rather than assembling high...
Dave Korn [Thu, 11 Nov 2010 13:29:46 +0000 (13:29 +0000)]
lto-streamer-out.c (write_symbol): Use int_size_in_bytes rather than assembling high and low parts of size if...

* lto-streamer-out.c (write_symbol): Use int_size_in_bytes rather than
assembling high and low parts of size if not using 32-bit HWINT; else
use DECL_SIZE_UNITS, not DECL_SIZE.

From-SVN: r166600

13 years agomove.h (forward): Implement N3143, resolving US 90.
Paolo Carlini [Thu, 11 Nov 2010 13:10:49 +0000 (13:10 +0000)]
move.h (forward): Implement N3143, resolving US 90.

2010-11-11  Paolo Carlini  <paolo.carlini@oracle.com>

* include/bits/move.h (forward): Implement N3143, resolving US 90.
* testsuite/20_util/forward/a.cc: New.
* testsuite/20_util/forward/b.cc: Likewise.
* testsuite/20_util/forward/c_neg.cc: Likewise.
* testsuite/20_util/forward/d.cc: Likewise.
* testsuite/20_util/forward/e.cc: Likewise.
* testsuite/20_util/forward/f_neg.cc: Likewise.

From-SVN: r166599

13 years agore PR tree-optimization/46383 (ICE: in get_binfo_at_offset, at tree.c:10947)
Martin Jambor [Thu, 11 Nov 2010 12:03:59 +0000 (13:03 +0100)]
re PR tree-optimization/46383 (ICE: in get_binfo_at_offset, at tree.c:10947)

2010-11-11  Martin Jambor  <mjambor@suse.cz>

PR tree-optimization/46383
* ipa-prop.c (compute_complex_assign_jump_func): Ignore negative
offsets.
(compute_complex_ancestor_jump_func): Likewise.
* tree.c (get_binfo_at_offset): Return NULL_TREE if offset is negative.

* testsuite/g++.dg/torture/pr46383.C: New test.

From-SVN: r166598

13 years agoUse more specific PR number in ChangeLog entry:
Joern Rennecke [Thu, 11 Nov 2010 11:04:44 +0000 (11:04 +0000)]
Use more specific PR number in ChangeLog entry:

        PR bootstrap/44770
        * haifa-sched.c (initiate_bb_reg_pressure_info): Add ATTRIBUTE_UNUSED
        to i.

From-SVN: r166597

13 years agosse-12.c: Add -msse4a to dg-options.
Uros Bizjak [Thu, 11 Nov 2010 08:24:15 +0000 (09:24 +0100)]
sse-12.c: Add -msse4a to dg-options.

* gcc-target/i386/sse-12.c: Add -msse4a to dg-options.
* gcc-target/i386/sse-13.c: Add -msse4a, -mfma4, -mbmi and -mtbm
to dg-options.
* gcc-target/i386/sse-14.c: Add -mfma4a and -mbmi to dg-options.
* g++.dg/other/i386-2.C: Add -msse4a and -mfma4 to dg-options.
* g++.dg/other/i386-3.C: Ditto.

From-SVN: r166596