Paolo Carlini
cf9280bf7e
array (array): Add pointer and const_pointer typedefs in C++0x mode, per DR 1306.
...
2010-02-19 Paolo Carlini <paolo.carlini@oracle.com>
* include/tr1_impl/array (array): Add pointer and const_pointer
typedefs in C++0x mode, per DR 1306.
* testsuite/util/testsuite_containers.h (basic_types): Add pointer
and const_pointer typedefs.
(pointer_aware_types): Remove.
* testsuite/util/testsuite_container_traits.h: Adjust.
From-SVN: r156906
2010-02-19 18:55:40 +00:00
Jakub Jelinek
25c0cad4fe
ipa-struct-reorg.c (make_field_acc_node, [...]): Use XCNEW instead of xcalloc.
...
* ipa-struct-reorg.c (make_field_acc_node, gen_cluster, peel_field):
Use XCNEW instead of xcalloc.
(add_access_to_acc_sites, create_new_var_node, add_alloc_site): Use
XNEW instead of xmalloc.
(get_fields): Use XNEWVEC instead of xmalloc.
From-SVN: r156905
2010-02-19 19:31:01 +01:00
Jakub Jelinek
e19bcb67dd
re PR debug/43084 (ICE -fipa-struct-reorg -g (VTA))
...
PR debug/43084
* ipa-struct-reorg.c (add_access_to_acc_sites): For debug stmts don't
populate vars array.
(create_new_general_access): For debug stmts just reset value.
(get_stmt_accesses): For accesses within debug stmts just record them
using add_access_to_acc_sites instead of preventing the peeling or
counting them as accesses.
* gcc.dg/pr43084.c: New test.
From-SVN: r156904
2010-02-19 19:30:22 +01:00
Jakub Jelinek
8ac074e8e2
re PR middle-end/42233 (c++ builtin_expect code generation regression)
...
PR middle-end/42233
* dojump.c (do_jump) <case TRUTH_NOT_EXPR>: Invert priority.
From-SVN: r156903
2010-02-19 19:19:06 +01:00
Paolo Carlini
488d283713
stl_algo.h (for_each): Implement resolution of DR 1110.
...
2010-02-19 Paolo Carlini <paolo.carlini@oracle.com>
* include/bits/stl_algo.h (for_each): Implement resolution of DR 1110.
* testsuite/25_algorithms/for_each/1.cc: New.
From-SVN: r156900
2010-02-19 17:38:18 +00:00
Richard Guenther
c7da035453
re PR tree-optimization/42916 ("-fcompare-debug failure" with "-O1 -funroll-loops -ftree-vectorize")
...
2010-02-19 Richard Guenther <rguenther@suse.de>
PR tree-optimization/42916
* tree-vect-slp.c (vect_slp_analyze_bb): Count only real
instructions.
* gcc.dg/pr42916.c: New testcase.
From-SVN: r156898
2010-02-19 15:42:31 +00:00
Andreas Schwab
e5dfb95fd7
configure.ac: Replace all uses of changequote in macro arguments with proper quoting.
...
* configure.ac: Replace all uses of changequote in macro arguments
with proper quoting.
From-SVN: r156895
2010-02-19 13:58:09 +00:00
Jakub Jelinek
2bdd49f4b3
re PR middle-end/42233 (c++ builtin_expect code generation regression)
...
PR middle-end/42233
* loop-doloop.c (add_test): Adjust do_compare_rtx_and_jump caller.
From-SVN: r156893
2010-02-19 13:47:18 +01:00
Paolo Carlini
415ed61204
shared_ptr_base.h (__weak_ptr): Remove deleted comparison operators, per DR 1256.
...
2010-02-19 Paolo Carlini <paolo.carlini@oracle.com>
* include/bits/shared_ptr_base.h (__weak_ptr): Remove deleted
comparison operators, per DR 1256.
* include/bits/shared_ptr.h (weak_ptr): Likewise.
* testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Adjust.
From-SVN: r156891
2010-02-19 10:42:47 +00:00
Richard Guenther
604d0dbc8b
re PR tree-optimization/42944 (errno misoptimization around malloc call)
...
2010-02-19 Richard Guenther <rguenther@suse.de>
PR tree-optimization/42944
* tree-ssa-alias.c (call_may_clobber_ref_p_1): Massage
test for aliasing with errno.
From-SVN: r156890
2010-02-19 10:40:17 +00:00
Jakub Jelinek
40e90eac95
re PR middle-end/42233 (c++ builtin_expect code generation regression)
...
PR middle-end/42233
* expr.h (jumpifnot, jumpifnot_1, jumpif, jumpif_1, do_jump,
do_jump_1, do_compare_rtx_and_jump): Add PROB argument.
* dojump.c: Include output.h.
(inv): New inline function.
(jumpifnot, jumpifnot_1, jumpif, jumpif_1, do_jump_1, do_jump,
do_jump_by_parts_greater_rtx, do_jump_by_parts_greater,
do_jump_by_parts_zero_rtx, do_jump_by_parts_equality_rtx,
do_jump_by_parts_equality, do_compare_and_jump): Add PROB
argument, pass it down to other calls.
(do_compare_rtx_and_jump): Likewise. If PROB is not -1,
add REG_BR_PROB note to the conditional jump.
* cfgexpand.c (add_reg_br_prob_note): Removed.
(expand_gimple_cond): Don't call it, add the probability
as last argument to jumpif_1/jumpifnot_1.
* Makefile.in (dojump.o): Depend on output.h.
* builtins.c (expand_errno_check): Adjust do_compare_rtx_and_jump
callers.
* expmed.c (emit_store_flag_force, do_cmp_and_jump): Likewise.
* stmt.c (do_jump_if_equal): Likewise.
* cfgrtl.c (rtl_lv_add_condition_to_bb): Likewise.
* loop-unswitch.c (compare_and_jump_seq): Likewise.
* config/rs6000/rs6000.c (rs6000_aix_emit_builtin_unwind_init):
Likewise.
* optabs.c (expand_doubleword_shift, expand_abs): Likewise.
* expr.c (expand_expr_real_1): Adjust do_jump, jumpifnot and
jumpifnot_1 callers.
(expand_expr_real_2): Adjust jumpifnot_1 and do_compare_rtx_and_jump
callers.
(store_expr): Adjust jumpifnot caller.
(store_constructor): Adjust jumpif caller.
From-SVN: r156889
2010-02-19 10:53:51 +01:00
Jakub Jelinek
554cf33034
re PR middle-end/42233 (c++ builtin_expect code generation regression)
...
PR middle-end/42233
* gimplify.c (gimple_boolify): For __builtin_expect call
gimple_boolify also on its first argument.
From-SVN: r156888
2010-02-19 10:50:30 +01:00
Benjamin Kosnik
40e053e3b8
run_doxygen: Add shortnames option.
...
2010-02-18 Benjamin Kosnik <bkoz@redhat.com>
* scripts/run_doxygen: Add shortnames option.
* doc/Makefile.am (doc-man-doxygen): Use it.
(doc-html-doxygen): Use it.
(doc-xml-doxygen): Use it, but default to NO.
(doc-pdf-dblatex): Add.
* doc/Makefile.in: Regenerate.
* doc/doxygen/user.cfg.in: Update filelist.
* include/bits/locale_facets.h: Fix markup warning.
From-SVN: r156887
2010-02-19 03:30:46 +00:00
Jason Merrill
7c08df6c1e
re PR c++/42837 (FAIL: g++.dg/abi/packed1.C execution test)
...
PR c++/42837
* class.c (create_vtable_ptr): Set DECL_PACKED if type is packed.
From-SVN: r156885
2010-02-18 20:16:28 -05:00
GCC Administrator
8154a82680
Daily bump.
...
From-SVN: r156883
2010-02-19 00:16:39 +00:00
Jason Merrill
5967126fdd
tweak changelog
...
From-SVN: r156880
2010-02-18 19:00:58 -05:00
Jason Merrill
b7d61a540d
dg-torture.exp: Run c-c++-common torture tests.
...
* g++.dg/torture/dg-torture.exp: Run c-c++-common torture tests.
* gcc.dg/torture/dg-torture.exp: Likewise.
* c-c++-common/complex-sign.h,
c-c++-common/complex-sign-add.c,
c-c++-common/complex-sign-mixed-add.c,
c-c++-common/complex-sign-mixed-div.c,
c-c++-common/complex-sign-mixed-mul.c,
c-c++-common/complex-sign-mixed-sub.c,
c-c++-common/complex-sign-mul.c,
c-c++-common/complex-sign-sub.c: Move into c-c++-common/torture.
From-SVN: r156879
2010-02-18 18:22:08 -05:00
Mike Stump
f8ba5508ff
Add PR reference.
...
From-SVN: r156878
2010-02-18 22:21:23 +00:00
Iain Sandoe
fca4c1d59a
objc-act.c (finish_var_decl): Set the generated symbols as "used".
...
* objc-act.c (finish_var_decl): Set the generated symbols as "used".
Co-Authored-By: Mike Stump <mikestump@comcast.net>
From-SVN: r156877
2010-02-18 22:00:21 +00:00
Uros Bizjak
1a242e3cea
configure.ac (gnu-unique-object): Wrap regexps using [] in changequote block.
...
* configure.ac (gnu-unique-object): Wrap regexps using [] in
changequote block.
(__stack_chk_fail): Ditto. Remove quadrigraphs.
* configure: Regenerated.
From-SVN: r156876
2010-02-18 22:42:23 +01:00
Mike Stump
3378b6fa11
Improve wording..
...
From-SVN: r156875
2010-02-18 21:04:40 +00:00
Jason Merrill
1ff6b2c8c4
re PR c++/43108 (mixed complex<T> multiplication horribly inefficient)
...
PR c++/43108
* typeck.c (cp_build_binary_op): Adapt mixed complex/non handling from
C build_binary_op.
* cp-tree.h (WANT_VECTOR_OR_COMPLEX): Rename from WANT_VECTOR.
* cvt.c (build_expr_type_conversion): Allow COMPLEX_TYPE.
From-SVN: r156874
2010-02-18 14:58:41 -05:00
Ulrich Weigand
86866b288e
spu-c.c (spu_resolve_overloaded_builtin): Call lang_hooks.types_compatible_p instead of comptypes.
...
* config/spu/spu-c.c (spu_resolve_overloaded_builtin): Call
lang_hooks.types_compatible_p instead of comptypes.
From-SVN: r156873
2010-02-18 19:53:02 +00:00
Jason Merrill
7890246f66
re PR target/43070 (g++.dg/ext/label2.C fails to compile at -O1)
...
PR c++/43070
* semantics.c (finish_goto_stmt): Don't call decay_conversion.
From-SVN: r156872
2010-02-18 14:20:21 -05:00
Benjamin Kosnik
bb7dcd0ef3
using.xml: Update.
...
2010-02-18 Benjamin Kosnik <bkoz@redhat.com>
* doc/xml/manual/using.xml: Update.
* doc/xml/manual/status_cxx1998.xml: Same.
* doc/xml/manual/status_cxx200x.xml: Add link.
* doc/html/*: Regenerate.
* testsuite/17_intro/freestanding.cc: Add.
From-SVN: r156871
2010-02-18 18:52:12 +00:00
Paolo Carlini
584fd146d2
typeinfo: Add system_header pragma.
...
2010-02-18 Paolo Carlini <paolo.carlini@oracle.com>
* libsupc++/typeinfo: Add system_header pragma.
* libsupc++/exception: Likewise.
* libsupc++/cxxabi-forced.h: Likewise.
* libsupc++/new: Likewise.
* libsupc++/cxxabi.h: Likewise.
* libsupc++/initializer_list: Likewise.
From-SVN: r156869
2010-02-18 17:58:53 +00:00
Sebastian Huber
8168ccc0d9
lib1funcs.asm (__prefer_thumb__): New define.
...
2010-02-18 Sebastian Huber <sebastian.huber@embedded-brains.de>
* config/arm/lib1funcs.asm (__prefer_thumb__): New define.
(udivsi3, aeabi_uidivmod, divsi3, aeabi_idivmod): Use Thumb-1 variant
if __prefer_thumb__ is defined.
From-SVN: r156868
2010-02-18 17:29:58 +00:00
Paolo Carlini
2f95713bd9
nested_exception.h: Fix <bits/c++0x_warning.h> include.
...
2010-02-18 Paolo Carlini <paolo.carlini@oracle.com>
* libsupc++/nested_exception.h: Fix <bits/c++0x_warning.h> include.
From-SVN: r156867
2010-02-18 17:20:16 +00:00
Jason Merrill
04daa92ba7
re PR c++/26261 (Rejects template with const static data member used in return type)
...
PR c++/26261
PR c++/43101
* pt.c (tsubst_qualified_id): Do normal lookup in non-dependent scope.
(maybe_update_decl_type): New fn.
* parser.c (cp_parser_init_declarator): Use it.
From-SVN: r156865
2010-02-18 11:27:18 -05:00
Jason Merrill
935c0a5d24
re PR c++/43109 (ICE: SIGSEGV with unnamed namespace inside named)
...
PR c++/43109
* semantics.c (begin_class_definition): Don't crash on unnamed ns.
From-SVN: r156864
2010-02-18 11:27:07 -05:00
Martin Jambor
746e119f8d
re PR tree-optimization/43066 (ICE: SIGFPE with empty struct and va_arg)
...
2010-02-18 Martin Jambor <mjambor@suse.cz>
PR tree-optimization/43066
* tree-sra.c (build_ref_for_offset_1): Return false on encountering an
array with zero-sized element type.
* testsuite/gcc.c-torture/compile/pr43066.c: New test.
From-SVN: r156863
2010-02-18 15:53:05 +01:00
Jakub Jelinek
82cf0c8c00
dwarf2out.c (add_var_loc_to_decl): Change last argument to rtx...
...
* dwarf2out.c (add_var_loc_to_decl): Change last argument to
rtx, allocate struct var_loc_node here and return it to the
caller, and only if it is actually needed.
(dwarf2out_var_location): Adjust add_var_loc_to_decl caller,
move it earlier and return immediately if it returns NULL.
From-SVN: r156860
2010-02-18 09:58:14 +01:00
Uros Bizjak
5a1e3b6c7f
attrib35.C: Fix target selector string.
...
* g++.dg/ext/attrib35.C: Fix target selector string.
* g++.dg/ext/attrib36.C: Ditto.
* g++.dg/ext/attrib37.C: Ditto.
* g++.dg/abi/mangle24.C: Remove stray "*/" from dg directives.
* g++.dg/abi/mangle25.C: Ditto.
From-SVN: r156859
2010-02-18 08:40:01 +01:00
Mikael Pettersson
ccb265d66e
gas.h: New file.
...
2010-02-17 Mikael Pettersson <mikpe@it.uu.se>
* config/sparc/gas.h: New file. Restore
TARGET_ASM_NAMED_SECTION to its ELF default.
* config/sparc/sysv4.h (TARGET_ASM_NAMED_SECTION): Do not
check !HAVE_GNU_AS.
* config/sparc/sparc.c (sparc_elf_asm_named_section):
Likewise. Add ATTRIBUTE_UNUSED to prototype.
* config.gcc (sparc*-*-linux*): Include sparc/gas.h
after sparc/sysv4.h.
From-SVN: r156854
2010-02-17 19:28:52 -08:00
GCC Administrator
c226be2843
Daily bump.
...
From-SVN: r156845
2010-02-18 00:17:01 +00:00
Jason Merrill
9ba5971590
re PR c++/43075 (20_util/bind/ref2.cc FAILs)
...
PR c++/43075
* call.c (build_over_call): Don't create zero-sized assignments.
* cp-gimplify.c (cp_genericize_r): Don't remove them here.
* cp-objcp-common.c (cp_expr_size): Remove.
* cp-tree.h: Remove prototype.
From-SVN: r156842
2010-02-17 17:51:51 -05:00
Jason Merrill
77278f4acb
re PR c++/43069 (ICE: tree check: expected tree that contains 'decl minimal' structure, have 'overload' in set_decl_namespace, at cp/name-lookup.c:3105)
...
PR c++/43069
* name-lookup.c (set_decl_namespace): Don't copy DECL_CONTEXT if the
decl we looked up doesn't match.
From-SVN: r156841
2010-02-17 17:51:43 -05:00
Jason Merrill
85a52ea58c
re PR c++/43093 (internal compiler error: Segmentation fault when compiling Firefox)
...
PR c++/43093
* cp-gimplify.c (cp_gimplify_expr) [INIT_EXPR]: Return if we don't
have an INIT_EXPR anymore.
From-SVN: r156840
2010-02-17 17:51:34 -05:00
Jason Merrill
d29760adf9
re PR c++/43079 (ICE with incompatible pointer-to-member-function as template parameter)
...
PR c++/43079
* pt.c (convert_nontype_argument): Change assert to test.
From-SVN: r156839
2010-02-17 17:51:25 -05:00
Benjamin Kosnik
af14c87be9
appendix_contributing.xml: Update markup rules for quoting and functions.
...
2010-02-17 Benjamin Kosnik <bkoz@redhat.com>
* doc/xml/manual/appendix_contributing.xml: Update markup rules
for quoting and functions.
From-SVN: r156838
2010-02-17 22:31:19 +00:00
Chris Jefferson
2a5f4935e8
locale_facets.h (__convert_to_v): Add empty exception-specification.
...
2010-02-17 Chris Jefferson <chris@bubblescope.net>
* include/bits/locale_facets.h (__convert_to_v): Add empty
exception-specification.
From-SVN: r156837
2010-02-17 21:09:10 +00:00
Uros Bizjak
01305d242d
ChangeLog: Fix whitespace.
...
* ChangeLog: Fix whitespace.
* testsuite/ChangeLog: Ditto.
From-SVN: r156835
2010-02-17 19:00:46 +01:00
Rafael Avila de Espindola
cae072e27c
MAINTAINERS (Plugin, [...]): Remove myself.
...
2010-02-17 Rafael Ávila de Espíndola <espindola@google.com>
* MAINTAINERS (Plugin, LTO, LTO plugin): Remove myself.
(Write After Approval): Update my email address.
From-SVN: r156834
2010-02-17 16:36:02 +00:00
Dave Korn
a30f3def59
mingw32.h (LIBGCJ_SONAME): Fix cut'n'pasto in DLL name.
...
* config/i386/mingw32.h (LIBGCJ_SONAME): Fix cut'n'pasto in DLL name.
From-SVN: r156832
2010-02-17 15:53:28 +00:00
Steven Bosscher
2f6c5b27e0
gensupport.c (process_one_cond_exec): Derive name for COND_EXEC patterns from predicated pattern.
...
* gensupport.c (process_one_cond_exec): Derive name for COND_EXEC
patterns from predicated pattern.
From-SVN: r156831
2010-02-17 15:05:40 +00:00
Paolo Carlini
ce4674f2a6
limits: Implement resolution of DR 559 (CD1) in C++0x mode.
...
2010-02-17 Paolo Carlini <paolo.carlini@oracle.com>
* include/std/limits: Implement resolution of DR 559 (CD1) in
C++0x mode.
* testsuite/18_support/numeric_limits/dr559.cc: New.
From-SVN: r156830
2010-02-17 12:18:54 +00:00
Nick Clifton
96e41f1611
oops - add changelog entry for previous delta.
...
From-SVN: r156829
2010-02-17 11:02:32 +00:00
Nick Clifton
e50390fc02
Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete the config.cache files found...
...
* Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
the config.cache files found by the find command.
From-SVN: r156828
2010-02-17 11:01:44 +00:00
Uros Bizjak
b5e33e042a
re PR target/43103 (xop-vpermil2pX tests failed)
...
PR target/43103
* config/i386/sse.md (xop_vpermil2<mode>3): Use avxmodesuffixf2c
for insn mnemonic suffix.
testsuite/ChangeLog:
PR target/43103
* gcc.target/i386/xop-check.h: Include m256-check.h.
* gcc.target/i386/xop-vpermil2ps-1.c: Include x86intrin.h.
* gcc.target/i386/xop-vpermil2ps-256-1.c: Ditto.
* gcc.target/i386/xop-vpermil2pd-1.c: Ditto.
* gcc.target/i386/xop-vpermil2pd-256-1.c: Ditto.
From-SVN: r156827
2010-02-17 11:52:41 +01:00
Nick Clifton
bf646aaf78
re PR c++/11238 (A constructor with exception handler rethrows the exception to the constructor caller)
...
PR 11238
* Makefile.tpl (local-distclean): Also remove config.cache files in
sub-directories as there may not be Makefiles present in the
sub-directories.
* Makefile.in: Regenerate.
* configure.ac: Revert previous delta.
* configure: Regenerate.
From-SVN: r156826
2010-02-17 10:05:27 +00:00