gccadmin [Thu, 20 Dec 2012 00:18:51 +0000 (00:18 +0000)]
Daily bump.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194625
138bc75d-0d04-0410-961f-
82ee72b054a4
pault [Thu, 20 Dec 2012 00:15:00 +0000 (00:15 +0000)]
2012-12-19 Paul Thomas <pault@gcc.gnu.org>
* array.c (resolve_array_list): Apply C4106.
* check.c (gfc_check_same_type_as): Exclude polymorphic
entities from check for extensible types. Improved error
for disallowed argument types to name the offending type.
* class.c : Update copyright date.
(gfc_class_null_initializer): Add argument for initialization
expression and deal with unlimited polymorphic typespecs.
(get_unique_type_string): Give unlimited polymorphic
entities a type string.
(gfc_intrinsic_hash_value): New function.
(gfc_build_class_symbol): Incorporate unlimited polymorphic
entities.
(gfc_find_derived_vtab): Deal with unlimited polymorphic
entities.
(gfc_find_intrinsic_vtab): New function.
* decl.c (gfc_match_decl_type_spec): Match typespec for
unlimited polymorphic type.
(gfc_match_data_decl): Skip to 'ok' if unlimited polymorphic.
expr.c (gfc_check_pointer_assign): Apply C717. If unlimited
polymorphic lvalue, find rvalue vtable for all typespecs,
except unlimited polymorphic expressions.
(gfc_check_vardef_context): Handle unlimited polymorphic
entities.
* gfortran.h : Add unlimited polymorphic attribute. Add
second arg to gfc_class_null_initializer primitive and
primitive for gfc_find_intrinsic_vtab. Add UNLIMITED_POLY
to detect unlimited polymorphic expressions.
* interface.c (gfc_compare_types): If expr1 is unlimited
polymorphic, always return 1. If expr2 is unlimited polymorphic
enforce C717.
(gfc_compare_interfaces): Skip past conditions that do not
apply for unlimited polymorphic entities.
(compare_parameter): Make sure that an unlimited polymorphic,
allocatable or pointer, formal argument is matched by an
unlimited polymorphic actual argument.
(compare_actual_formal): Ensure that an intrinsic vtable exists
to match an unlimited polymorphic formal argument.
* match.c (gfc_match_allocate): Type kind parameter does not
need to match an unlimited polymorphic allocate-object.
(alloc_opt_list): An unlimited polymorphic allocate-object
requires a typespec or a SOURCE tag.
(select_intrinsic_set_tmp): New function.
(select_type_set_tmp): Call new function. If it returns NULL,
build a derived type or class temporary instead.
(gfc_match_type_is): Remove restriction to derived types only.
Bind(C) or sequence derived types not permitted.
* misc (gfc_typename): Printed CLASS(*) for unlimited
polymorphism.
* module.c : Add AB_UNLIMITED_POLY to pass unlimited
polymorphic attribute to and from modules.
* resolve.c (resolve_common_vars): Unlimited polymorphic
entities cannot appear in common blocks.
(resolve_deallocate_expr): Deallocate unlimited polymorphic
enities.
(resolve_allocate_expr): Likewise for allocation. Make sure
vtable exists.
(gfc_type_is_extensible): Unlimited polymorphic entities are
not extensible.
(resolve_select_type): Handle unlimited polymorphic selectors.
Ensure that length type parameters are assumed and that names
for intrinsic types are generated.
(resolve_fl_var_and_proc): Exclude select type temporaries
from test of extensibility of type.
(resolve_fl_variable): Likewise for test that assumed character
length must be a dummy or a parameter.
(resolve_fl_derived0): Return SUCCESS unconditionally for
unlimited polymorphic entities. Also, allow unlimited
polymorphic components.
(resolve_fl_derived): Return SUCCESS unconditionally for
unlimited polymorphic entities.
(resolve_symbol): Return early with unlimited polymorphic
entities.
* simplifiy.c : Update copyright year.
(gfc_simplify_extends_type_of): No simplification possible
for unlimited polymorphic arguments.
* symbol.c (gfc_use_derived): Nothing to do for unlimited
polymorphic "derived type".
(gfc_type_compatible): Return unity if ts1 is unlimited
polymorphic.
* trans-decl.c (create_function_arglist) Formal arguments
without a character length should be treated in the same way
as passed lengths.
(gfc_trans_deferred_vars): Nullify the vptr of unlimited
polymorphic pointers. Avoid unlimited polymorphic entities
triggering gcc_unreachable.
* trans-expr.c (gfc_conv_intrinsic_to_class): New function.
(gfc_trans_class_init_assign): Make indirect reference of
src.expr.
(gfc_trans_class_assign): Expression NULL of unknown type
should set NULL vptr on lhs. Treat C717 cases where lhs is
a derived type and the rhs is unlimited polymorphic.
(gfc_conv_procedure_call): Handle the conversion of a non-class
actual argument to match an unlimited polymorphic formal
argument. Suppress the passing of a character string length
in this case. Make sure that calls to the character __copy
function have two character string length arguments.
(gfc_conv_initializer): Pass the initialization expression to
gfc_class_null_initializer.
(gfc_trans_subcomponent_assign): Ditto.
(gfc_conv_structure): Move handling of _size component.
trans-intrinsic.c: (gfc_conv_same_type_as): Handle conditions
where unlimited polymorphic arguments have null vptr.
* trans-stmt.c (trans_associate_var): Correctly treat array
temporaries associated with unlimited polymorphic selectors.
Recover the overwritten dtype for the descriptor. Use the _size
field of the vptr for character string lengths.
(gfc_trans_allocate): Cope with unlimited polymorphic allocate
objects; especially with character source tags.
(reset_vptr): New function.
(gfc_trans_deallocate): Call it.
* trans-types.c (gfc_get_derived_type): Detect unlimited
polymorphic types and deal with cases where the derived type of
components is null.
* trans.c : Update copyright year.
(trans_code): Call gfc_trans_class_assign for C717 cases where
the lhs is not unlimited polymorphic.
2012-12-19 Paul Thomas <pault@gcc.gnu.org>
* intrinsics/extends_type_of.c : Return correct results for
null vptrs.
2012-12-19 Paul Thomas <pault@gcc.gnu.org>
* gfortran.dg/unlimited_polymorphic_1.f03: New test.
* gfortran.dg/unlimited_polymorphic_2.f03: New test.
* gfortran.dg/unlimited_polymorphic_3.f03: New test.
* gfortran.dg/same_type_as.f03: Correct for improved message.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194622
138bc75d-0d04-0410-961f-
82ee72b054a4
burnus [Wed, 19 Dec 2012 23:05:49 +0000 (23:05 +0000)]
2012-12-19 Tobias Burnus <burnus@net-b.de>
PR fortran/55733
* trans-decl.c (gfc_create_string_length): Avoid setting
TREE_STATIC for automatic variables with -fno-automatic.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194621
138bc75d-0d04-0410-961f-
82ee72b054a4
jason [Wed, 19 Dec 2012 22:22:36 +0000 (22:22 +0000)]
PR c++/55724
* pt.c (type_unification_real): Re-combine post-deduction loops.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194620
138bc75d-0d04-0410-961f-
82ee72b054a4
doko [Wed, 19 Dec 2012 17:03:15 +0000 (17:03 +0000)]
2012-12-19 Matthias Klose <doko@ubuntu.com>
Import GNU Classpath (
20121202).
* Regenerate class and header files.
* Regenerate auto* files.
* sources.am, gcj/javaprims.h: Regenerate.
* gnu/java/nio/FileLockImpl.java (close): New override.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194618
138bc75d-0d04-0410-961f-
82ee72b054a4
doko [Wed, 19 Dec 2012 16:39:23 +0000 (16:39 +0000)]
2012-12-19 Matthias Klose <doko@ubuntu.com>
* config/i386/t-kfreebsd (MULTIARCH_DIRNAME): Add comma to
separate arguments in make function.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194617
138bc75d-0d04-0410-961f-
82ee72b054a4
doko [Wed, 19 Dec 2012 16:18:37 +0000 (16:18 +0000)]
2012-12-19 Matthias Klose <doko@ubuntu.com>
* Makefile.def (install-target-libgo): Depend on
install-target-libatomic.
* Makefile.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194616
138bc75d-0d04-0410-961f-
82ee72b054a4
uros [Wed, 19 Dec 2012 16:04:11 +0000 (16:04 +0000)]
* config/i386/i386.h (enum ix86_tune_indices): Add
X86_TUNE_AVOID_MEM_OPND_FOR_CMOVE.
(TARGET_AVOID_MEM_OPND_FOR_CMOVE): New define.
* config/i386/i386.c (initial_ix86_tune_features)
<X86TUNE_AVOID_MEM_OPND_FOR_CMOVE>: Initialize.
* config/i386/i386.md (splitters to avoid cmove memory operands): New.
(peephole2s to avoid cmove memory operands): New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194614
138bc75d-0d04-0410-961f-
82ee72b054a4
burnus [Wed, 19 Dec 2012 15:53:01 +0000 (15:53 +0000)]
2012-12-19 Tobias Burnus <burnus@net-b.de>
* testsuite/libgomp.fortran/fortran.exp: Set
-fintrinsic-modules-path.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194613
138bc75d-0d04-0410-961f-
82ee72b054a4
ktkachov [Wed, 19 Dec 2012 15:51:24 +0000 (15:51 +0000)]
gcc/
2012-12-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/arm/arm.md (f_minmaxs, f_minmaxd): New types.
* config/arm/vfp.md (smax<mode>3): New pattern.
(smin<mode>3): Likewise.
gcc/testsuite/
2012-12-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* gcc.target/arm/vmaxnmdf.c: New test.
* gcc.target/arm/vmaxnmsf.c: Likewise.
* gcc.target/arm/vminnmsf.c: Likewise.
* gcc.target/arm/vminnmdf.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194612
138bc75d-0d04-0410-961f-
82ee72b054a4
burnus [Wed, 19 Dec 2012 15:02:50 +0000 (15:02 +0000)]
libgomp/
2012-12-19 Tobias Burnus <burnus@net-b.de>
* testsuite/libgomp.fortran/use_intrinsic_1.f90: New; moved
from gcc/testsuite/gfortran.dg/gomp/use_intrinsic_1.f90.
gcc/testsuite/
2012-12-19 Tobias Burnus <burnus@net-b.de>
* gfortran.dg/gomp/use_intrinsic_1.f90: Moved
to libgomp/testsuite/libgomp.fortran/use_intrinsic_1.f90.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194611
138bc75d-0d04-0410-961f-
82ee72b054a4
rguenth [Wed, 19 Dec 2012 14:38:10 +0000 (14:38 +0000)]
2012-12-19 Richard Biener <rguenther@suse.de>
* targhooks.h (default_canonicalize_comparison): Fix prototype.
* targhooks.c (default_canonicalize_comparison): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194610
138bc75d-0d04-0410-961f-
82ee72b054a4
rguenth [Wed, 19 Dec 2012 13:53:18 +0000 (13:53 +0000)]
2012-12-19 Richard Biener <rguenther@suse.de>
PR tree-optimization/55736
PR tree-optimization/55703
* gimplify.c (prune_expr_location): New function.
(unshare_expr_without_location): Likewise.
* tree.h (unshare_expr_without_location): Declare.
* ipa-prop.c (prune_expression_for_jf): Remove.
(prune_expression_for_jf_1): Likewise.
(ipa_set_jf_constant): Use unshare_expr_without_location.
(ipa_set_jf_arith_pass_through): Likewise.
(determine_known_aggregate_parts): Likewise.
* tree-switch-conversion.c (build_constructors): Use
unshare_expr_without_location on all constructor elements.
* gcc.dg/lto/pr55703_0.c: New testcase.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194609
138bc75d-0d04-0410-961f-
82ee72b054a4
krebbel [Wed, 19 Dec 2012 12:39:17 +0000 (12:39 +0000)]
2012-12-19 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* target.def: Define canonicalize_comparison hook.
* targhooks.h (default_canonicalize_comparison): New prototype.
* targhooks.c (default_canonicalize_comparison): New function.
* doc/tm.texi: Add documentation for the new target hook.
* doc/tm.texi.in: Likewise.
* combine.c (try_combine): Adjust to use the target hook.
* config/alpha/alpha.h (CANONICALIZE_COMPARISON): Remove macro
definition.
* config/alpha/alpha.c (alpha_canonicalize_comparison): New
function.
(TARGET_CANONICALIZE_COMPARISON): New macro definition.
* config/arm/arm-protos.h (arm_canonicalize_comparison): Remove
prototype.
* config/arm/arm.c (arm_canonicalize_comparison): Add new
parameter.
(TARGET_CANONICALIZE_COMPARISON): New macro definition.
* config/arm/arm.h (CANONICALIZE_COMPARISON): Remove macro
definition.
* config/s390/s390-protos.h (s390_canonicalize_comparison): Remove
prototype.
* config/s390/s390.c (s390_canonicalize_comparison): Add new
parameter.
(TARGET_CANONICALIZE_COMPARISON): New macro definition.
* config/s390/s390.h (CANONICALIZE_COMPARISON): Remove macro
definition.
* config/sh/sh-protos.h (sh_canonicalize_comparison): Remove
prototype.
* config/sh/sh.c (sh_canonicalize_comparison): Add new prototype. New
function overloading the old one.
(TARGET_CANONICALIZE_COMPARISON): New macro definition.
* config/sh/sh.h (CANONICALIZE_COMPARISON): Remove macro
definition.
* config/spu/spu.c (spu_canonicalize_comparison): New function.
(TARGET_CANONICALIZE_COMPARISON): New macro definition.
* config/spu/spu.h (CANONICALIZE_COMPARISON): Remove macro
definition.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194608
138bc75d-0d04-0410-961f-
82ee72b054a4
jakub [Wed, 19 Dec 2012 12:16:56 +0000 (12:16 +0000)]
PR debug/55730
* dwarf2out.c (mem_loc_descriptor): Ignore CLOBBER.
* valtrack.c (gen_lowpart_for_debug): New function.
(propagate_for_debug): Temporarily set rtl_hooks.gen_lowpart_no_emit
to gen_lowpart_for_debug.
* gcc.dg/debug/pr55730.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194607
138bc75d-0d04-0410-961f-
82ee72b054a4
hubicka [Wed, 19 Dec 2012 11:42:30 +0000 (11:42 +0000)]
PR tree-optimization/55683
* g++.dg/ipa/devirt-9.C: New testcase.
* ipa-prop.c (try_make_edge_direct_virtual_call): Look into constants for binfo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194606
138bc75d-0d04-0410-961f-
82ee72b054a4
xguo [Wed, 19 Dec 2012 11:40:52 +0000 (11:40 +0000)]
gcc/ChangeLog:
2012-12-19 Terry Guo <terry.guo@arm.com>
* config/arm/arm.c (thumb_find_work_register): Check argument
register number based on current PCS.
gcc/testsuite/ChangeLog:
2012-12-19 Terry Guo <terry.guo@arm.com>
* gcc.target/arm/thumb-find-work-register.c: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194605
138bc75d-0d04-0410-961f-
82ee72b054a4
burnus [Wed, 19 Dec 2012 09:21:17 +0000 (09:21 +0000)]
2012-12-19 Tobias Burnus <burnus@net-b.de>
Jakub Jelinek <jakub@redhat.com>
Janus Weil <janus@gcc.gnu.org>
PR fortran/55636
PR fortran/55733
* gfortran.h (GFC_PREFIX): Define.
* trans-decl.c (gfc_create_string_length): For VAR_DECLs that
will be TREE_STATIC, use GFC_PREFIX to mangle the names. Handle
-fno-automatic
(gfc_trans_deferred_vars): Don't free variables SAVEd via
-fno-automatic.
2012-12-19 Tobias Burnus <burnus@net-b.de>
PR fortran/55733
* gfortran.dg/save_5.f90: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194604
138bc75d-0d04-0410-961f-
82ee72b054a4
gccadmin [Wed, 19 Dec 2012 00:18:34 +0000 (00:18 +0000)]
Daily bump.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194597
138bc75d-0d04-0410-961f-
82ee72b054a4
jakub [Tue, 18 Dec 2012 22:48:04 +0000 (22:48 +0000)]
PR c/39464
* c-typeck.c (convert_for_assignment): For -Wpointer-sign
warning require that both c_common_unsigned_type as well as
c_common_signed_type is the same for both mvl and mvr types.
* gcc.dg/pr39464.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194594
138bc75d-0d04-0410-961f-
82ee72b054a4
ian [Tue, 18 Dec 2012 22:07:38 +0000 (22:07 +0000)]
libgo: Link against libatomic_convenience.la.
gcc/go:
PR go/55201
* gospec.c: Revert last patch.
gcc/testsuite:
PR go/55201
* lib/go.exp: Revert last patch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194593
138bc75d-0d04-0410-961f-
82ee72b054a4
ian [Tue, 18 Dec 2012 22:04:08 +0000 (22:04 +0000)]
PR go/55201
* Makefile.am (noinst_LTLIBRARIES): Define new make variable.
(libatomic_convenience_la_SOURCES): Likewise.
(libatomic_convenience_la_LIBADD): Likewise.
* Makefile.in: Rebuild.
* testsuite/Makefile.in: Rebuild.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194592
138bc75d-0d04-0410-961f-
82ee72b054a4
jakub [Tue, 18 Dec 2012 21:40:29 +0000 (21:40 +0000)]
PR target/55562
* sbitmap.c (bitmap_and, bitmap_xor, bitmap_ior): Return whether
dst sbitmap changed even if it doesn't have popcount.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194591
138bc75d-0d04-0410-961f-
82ee72b054a4
jgreenhalgh [Tue, 18 Dec 2012 17:46:48 +0000 (17:46 +0000)]
[AArch64] Fix warning in aarch64.md
gcc/
* config/aarch64/aarch64.md (insv_imm<mode>): Add modes
for source operands.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194589
138bc75d-0d04-0410-961f-
82ee72b054a4
jgreenhalgh [Tue, 18 Dec 2012 17:43:25 +0000 (17:43 +0000)]
[AArch64] Fix some warnings about unused variables.
gcc/
* config/aarch64/aarch64.c (aarch64_simd_attr_length_move):
Remove unused variables.
(aarch64_split_compare_and_swap): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194588
138bc75d-0d04-0410-961f-
82ee72b054a4
ktkachov [Tue, 18 Dec 2012 16:43:22 +0000 (16:43 +0000)]
2012-12-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/arm/driver-arm.c (arm_cpu_table):
Add Cortex-A7.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194587
138bc75d-0d04-0410-961f-
82ee72b054a4
aldyh [Tue, 18 Dec 2012 16:21:57 +0000 (16:21 +0000)]
PR other/54324
* doc/install.texi (Tools/packages necessary for building GCC):
Suggest --disable-stage1-checking for older GCC's.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194586
138bc75d-0d04-0410-961f-
82ee72b054a4
aldyh [Tue, 18 Dec 2012 15:26:27 +0000 (15:26 +0000)]
PR other/54324
* tree-ssa-coalesce.c (struct ssa_name_var_hash): Remove "union"
from template parameter.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194584
138bc75d-0d04-0410-961f-
82ee72b054a4
aldyh [Tue, 18 Dec 2012 15:19:43 +0000 (15:19 +0000)]
PR other/54324
* ansidecl.h (ATTRIBUTE_UNUSED): Do not set __attribute__ for GCC
< 3.4.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194583
138bc75d-0d04-0410-961f-
82ee72b054a4
rguenth [Tue, 18 Dec 2012 14:39:49 +0000 (14:39 +0000)]
2012-12-18 Richard Biener <rguenther@suse.de>
PR middle-end/54838
* cfgloopmanip.c (fix_loop_structure): Re-discover latch
edges first and mark loops for removal if no latch edges remain.
Properly re-create LOOPS_HAVE_FALLTHRU_PREHEADERS.
* loop-init.c (loop_optimizer_finalize): Set
LOOPS_MAY_HAVE_MULTIPLE_LATCHES.
* g++.dg/torture/pr54838.C: New testcase.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194582
138bc75d-0d04-0410-961f-
82ee72b054a4
ian [Tue, 18 Dec 2012 14:28:24 +0000 (14:28 +0000)]
libgo: Link against libatomic.
./:
PR go/55201
* Makefile.def (all-target-libgo): Depend on all-target-libatomic.
* Makefile.in: Regenerate.
gcc/go:
PR go/55201
* gospec.c (LIBATOMIC): Define.
(LIBATOMIC_PROFILE): Define.
(lang_specific_driver): Add LIBATOMIC[_PROFILE] option.
gcc/testsuite:
* lib/go.exp (go_link_flags): Add libatomic location to flags and
ld_library_path.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194581
138bc75d-0d04-0410-961f-
82ee72b054a4
rguenth [Tue, 18 Dec 2012 13:26:59 +0000 (13:26 +0000)]
2012-12-18 Richard Biener <rguenther@suse.de>
* gcc.dg/tree-ssa/reassoc-19.c: Adjust.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194579
138bc75d-0d04-0410-961f-
82ee72b054a4
rguenth [Tue, 18 Dec 2012 13:12:34 +0000 (13:12 +0000)]
2012-12-18 Richard Biener <rguenther@suse.de>
PR tree-optimization/55555
* tree-ssa-loop-niter.c (idx_infer_loop_bounds): Properly
analyze evolution of the index for the loop it is used in.
* tree-scalar-evolution.c (instantiate_scev_name): Take
inner loop we will be creating a chrec for. Generalize
fix for PR40281 and prune invalid SCEVs.
(instantiate_scev_poly): Likewise - pass down inner loop
we will be creating a chrec for.
(instantiate_scev_binary): Take and pass through inner loop.
(instantiate_array_ref): Likewise.
(instantiate_scev_convert): Likewise.
(instantiate_scev_not): Likewise.
(instantiate_scev_3): Likewise.
(instantiate_scev_2): Likewise.
(instantiate_scev_1): Likewise.
(instantiate_scev_r): Likewise.
(resolve_mixers): Adjust.
(instantiate_scev): Likewise.
* gcc.dg/torture/pr55555.c: New testcase.
* gcc.dg/vect/vect-iv-11.c: Adjust.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194578
138bc75d-0d04-0410-961f-
82ee72b054a4
redi [Tue, 18 Dec 2012 11:08:33 +0000 (11:08 +0000)]
* doc/xml/manual/abi.xml: Update URLs for C++ ABI.
* doc/xml/manual/policy_data_structures_biblio.xml: Add xmlns
attribute.
* doc/xml/manual/debug_mode.xml: Give filenames to chunks.
* doc/xml/manual/diagnostics.xml: Likewise.
* doc/xml/manual/extensions.xml: Likewise.
* doc/xml/manual/bitmap_allocator.xml: Likewise.
* doc/xml/manual/mt_allocator.xml: Likewise.
* doc/xml/manual/policy_data_structures.xml: Likewise.
* doc/xml/manual/parallel_mode.xml: Likewise.
* doc/xml/manual/profile_mode.xml: Likewise.
* doc/xml/manual/spine.xml: Likewise. Update copyright years.
* doc/html/*: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194576
138bc75d-0d04-0410-961f-
82ee72b054a4
jakub [Tue, 18 Dec 2012 10:50:47 +0000 (10:50 +0000)]
PR debug/55717
* rtlhooks-def.h (RTL_HOOKS_GEN_LOWPART_NO_EMIT): Define to
gen_lowpart_if_possible.
(gen_lowpart_no_emit_general): Remove prototype.
* rtlhooks.c (gen_lowpart_no_emit_general): Removed.
* simplify-rtx.c (simplify_unary_operation_1,
simplify_binary_operation_1): Continue simplifying if
rtl_hooks.gen_lowpart_no_emit returns NULL_RTX.
* dwarf2out.c (mem_loc_descriptor) <case TRUNCATE>: Handle
truncation like lowpart SUBREG.
* testsuite/g++.dg/opt/pr55717.C: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194575
138bc75d-0d04-0410-961f-
82ee72b054a4
aph [Tue, 18 Dec 2012 10:00:18 +0000 (10:00 +0000)]
PR gcc/55716 [4.8 Regression] gjavah throws an exception
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194574
138bc75d-0d04-0410-961f-
82ee72b054a4
aph [Tue, 18 Dec 2012 09:57:48 +0000 (09:57 +0000)]
2012-12-17 Andrew Haley <aph@redhat.com>
* tools/gnu/classpath/tools/javah/Main.java (parseClasses): Don't
scan inner classes if our item is a file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194573
138bc75d-0d04-0410-961f-
82ee72b054a4
gerald [Tue, 18 Dec 2012 05:37:26 +0000 (05:37 +0000)]
* doc/contrib.texi (Contributors): Update Kaveh Ghazi's entry;
remove broken link to Rutgers University.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194572
138bc75d-0d04-0410-961f-
82ee72b054a4
gccadmin [Tue, 18 Dec 2012 00:18:21 +0000 (00:18 +0000)]
Daily bump.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194571
138bc75d-0d04-0410-961f-
82ee72b054a4
redi [Mon, 17 Dec 2012 21:30:51 +0000 (21:30 +0000)]
* include/std/future (__async_sfinae_helper): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194567
138bc75d-0d04-0410-961f-
82ee72b054a4
ian [Mon, 17 Dec 2012 21:07:27 +0000 (21:07 +0000)]
log/syslog: Solaris portability patches.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194566
138bc75d-0d04-0410-961f-
82ee72b054a4
jbglaw [Mon, 17 Dec 2012 17:39:53 +0000 (17:39 +0000)]
Fix whitespace in gcc/ChangeLog.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194560
138bc75d-0d04-0410-961f-
82ee72b054a4
jbglaw [Mon, 17 Dec 2012 17:37:47 +0000 (17:37 +0000)]
* varasm.c (pending_assemble_externals_processed): Guard
with ASM_OUTPUT_EXTERNAL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194559
138bc75d-0d04-0410-961f-
82ee72b054a4
uweigand [Mon, 17 Dec 2012 16:39:19 +0000 (16:39 +0000)]
2012-12-17 Andrew Stubbs <ams@codesourcery.com>
Ulrich Weigand <ulrich.weigand@linaro.org>
gcc/
* config/arm/arm.md (zero_extend<mode>di2): Add extra alternatives
for NEON registers.
Add alternative for one-instruction extend-in-place.
(extend<mode>di2): Likewise.
Add constraints for Thumb-mode memory loads.
Prevent extend splitters doing NEON alternatives.
* config/arm/iterators.md (qhs_extenddi_cstr, qhs_zextenddi_cstr):
Adjust constraints to add new alternatives.
* config/arm/neon.md: Add splitters for zero- and sign-extend.
gcc/testsuite/
* gcc.target/arm/neon-extend-1.c: New file.
* gcc.target/arm/neon-extend-2.c: New file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194558
138bc75d-0d04-0410-961f-
82ee72b054a4
gretay [Mon, 17 Dec 2012 15:49:24 +0000 (15:49 +0000)]
gcc/
2012-12-17 Greta Yorsh <Greta.Yorsh@arm.com>
* config/arm/arm.md (type): Add "simple_alu_shift" to attribute "type".
(core_cycles): Update for simple_alu_shift.
(thumb1_zero_extendhisi2,arm_zero_extendhisi2_v6): Use simple_alu_shift
instead of a CPU-speicific condition for "type" attribute.
(thumb1_zero_extendqisi2_v6,arm_zero_extendqisi2_v6): Likewise.
(thumb1_extendhisi2,arm_extendhisi2_v6,arm_extendqisi_v6): Likewise.
(thumb1_extendqisi2): Likewise.
* config/arm/thumb2.md (thumb2_extendqisi_v6): Likewise.
(thumb2_zero_extendhisi2_v6,thumb2_zero_extendqisi2_v6) Likewise.
* config/arm/arm1020e.md (alu_shift_op): Use simple_alu_shift.
* config/arm/arm1026ejs.md (alu_shift_op): Likewise.
* config/arm/arm1136jfs.md (11_alu_shift_op): Likewise.
* config/arm/arm926ejs.md (9_alu_op): Likewise.
* config/arm/cortex-a15.md (cortex_a15_alu_shift): Likewise.
* config/arm/cortex-a5.md (cortex_a5_alu_shift): Likewise.
* config/arm/cortex-a8.md (cortex_a8_alu_shift,cortex_a8_mov): Likewise.
* config/arm/cortex-a9.md (cortex_a9_dp,cortex_a9_dp_shift): Likewise.
* config/arm/cortex-m4.md (cortex_m4_alu): Likewise.
* config/arm/cortex-r4.md (cortex_r4_alu_shift): Likewise.
* config/arm/fa526.md (526_alu_shift_op): Likewise.
* config/arm/fa606te.md (fa606te_core): Likewise.
* config/arm/fa626te.md (626te_alu_shift_op): Likewise.
* config/arm/fa726te.md (726te_alu_shift_op): Likewise.
* config/arm/fmp626.md (mp626_alu_shift_op): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194557
138bc75d-0d04-0410-961f-
82ee72b054a4
ktkachov [Mon, 17 Dec 2012 15:15:59 +0000 (15:15 +0000)]
2012-12-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* lib/target-supports.exp (add_options_for_arm_v8_neon):
Add -march=armv8-a.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194556
138bc75d-0d04-0410-961f-
82ee72b054a4
rguenth [Mon, 17 Dec 2012 14:55:53 +0000 (14:55 +0000)]
2012-12-17 Richard Biener <rguenther@suse.de>
PR middle-end/54781
* alias.c (ao_ref_from_mem): More appropriately constrain the
base object we feed to the tree oracle. Remove dead code.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194554
138bc75d-0d04-0410-961f-
82ee72b054a4
jgreenhalgh [Mon, 17 Dec 2012 09:44:58 +0000 (09:44 +0000)]
[AARCH64] Enable support for TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES.
gcc/
* config/aarch64/aarch64.c
(aarch64_autovectorize_vector_sizes): New.
(TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Define.
gcc/testsuite/
* lib/target-supports.exp
(check_effective_target_vect_multiple_sizes): Enable for AArch64.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194552
138bc75d-0d04-0410-961f-
82ee72b054a4
gccadmin [Mon, 17 Dec 2012 00:18:54 +0000 (00:18 +0000)]
Daily bump.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194546
138bc75d-0d04-0410-961f-
82ee72b054a4
redi [Sun, 16 Dec 2012 20:52:47 +0000 (20:52 +0000)]
* src/c++11/thread.cc (execute_native_thread_routine): Do not swallow
__forced_unwind exceptions.
* testsuite/30_threads/thread/native_handle/cancel.cc: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194539
138bc75d-0d04-0410-961f-
82ee72b054a4
danglin [Sun, 16 Dec 2012 17:34:58 +0000 (17:34 +0000)]
PR middle-end/55709
Forward port from 4.7 branch:
2012-04-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR middle-end/52894
* varasm.c (process_pending_assemble_externals): Set
pending_assemble_externals_processed true.
(assemble_external): Call assemble_external_real if the pending
assemble externals have been processed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194538
138bc75d-0d04-0410-961f-
82ee72b054a4
burnus [Sun, 16 Dec 2012 14:36:54 +0000 (14:36 +0000)]
2012-12-16 Tobias Burnus <burnus@net-b.de>
PR fortran/55197
* module.c (gfc_use_module): Free rename list only for
internally generated intrinsic modules.
2012-12-16 Tobias Burnus <burnus@net-b.de>
PR fortran/55197
* gfortran.dg/gomp/use_intrinsic_1.f90: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194537
138bc75d-0d04-0410-961f-
82ee72b054a4
burnus [Sun, 16 Dec 2012 14:34:45 +0000 (14:34 +0000)]
2012-12-16 Tobias Burnus <burnus@net-b.de>
* trans-intrinsic.c (conv_intrinsic_move_alloc): Set dynamic
type of the FROM variable to the declared type.
2012-12-16 Tobias Burnus <burnus@net-b.de>
* gfortran.dg/move_alloc_14.f90: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194536
138bc75d-0d04-0410-961f-
82ee72b054a4
ebotcazou [Sun, 16 Dec 2012 10:40:02 +0000 (10:40 +0000)]
Adjust
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194533
138bc75d-0d04-0410-961f-
82ee72b054a4
ebotcazou [Sun, 16 Dec 2012 10:25:17 +0000 (10:25 +0000)]
PR target/55673
* config/sparc/sparc.c (sparc_emit_membar_for_model): Fix reversed
handling of before and after cases.
* config/sparc/sync.md (atomic_store): Fix pasto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194531
138bc75d-0d04-0410-961f-
82ee72b054a4
ebotcazou [Sun, 16 Dec 2012 10:02:37 +0000 (10:02 +0000)]
PR rtl-optimization/55630
* expr.c (expand_assignment): Do not call copy_blkmode_to_reg to move
BLKmode return values to the return register.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194530
138bc75d-0d04-0410-961f-
82ee72b054a4
tschwinge [Sun, 16 Dec 2012 07:24:29 +0000 (07:24 +0000)]
* configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194529
138bc75d-0d04-0410-961f-
82ee72b054a4
gccadmin [Sun, 16 Dec 2012 00:18:24 +0000 (00:18 +0000)]
Daily bump.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194528
138bc75d-0d04-0410-961f-
82ee72b054a4
burnus [Sat, 15 Dec 2012 23:25:36 +0000 (23:25 +0000)]
2012-12-16 Tobias Burnus <burnus@net-b.de>
PR fortran/55638
* resolve.c (resolve_formal_arglist): Allow VALUE without
INTENT for ELEMENTAL procedures.
2012-12-16 Tobias Burnus <burnus@net-b.de>
PR fortran/55638
* gfortran.dg/elemental_args_check_3.f90: Update dg-error.
* gfortran.dg/elemental_args_check_7.f90: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194525
138bc75d-0d04-0410-961f-
82ee72b054a4
ebotcazou [Sat, 15 Dec 2012 19:16:24 +0000 (19:16 +0000)]
* lib/scanasm.exp (get_ada_spec_filename): Use procedural form.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194524
138bc75d-0d04-0410-961f-
82ee72b054a4
ebotcazou [Sat, 15 Dec 2012 18:47:53 +0000 (18:47 +0000)]
PR ada/52735
* gnat.dg/nested_generic1.adb: New test.
* gnat.dg/nested_generic1_pkg.ad[sb]: New helper.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194523
138bc75d-0d04-0410-961f-
82ee72b054a4
ebotcazou [Sat, 15 Dec 2012 18:11:38 +0000 (18:11 +0000)]
PR ada/53766
* gnat.dg/controlled7.ad[sb]: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194521
138bc75d-0d04-0410-961f-
82ee72b054a4
ebotcazou [Sat, 15 Dec 2012 17:50:49 +0000 (17:50 +0000)]
PR ada/53996
* gcc-interface/utils.c (gnat_type_for_size): Use %u in lieu of %d.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194520
138bc75d-0d04-0410-961f-
82ee72b054a4
aoliva [Sat, 15 Dec 2012 10:25:15 +0000 (10:25 +0000)]
PR libmudflap/53952
* expr.c (mem_ref_refers_to_non_mem_p): Factor out
implementation into...
(addr_expr_of_non_mem_decl_p_1): ... this new function.
(addr_expr_of_non_mem_decl_p): New.
* tree.h (addr_expr_of_non_mem_decl_p): Declare.
* tree-mudflap.c (mf_xform_derefs_1): Don't change MEM_REFs
and TARGET_MEM_REFs that have an ADDR_EXPR of a non-mem DECL
as base operand.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194519
138bc75d-0d04-0410-961f-
82ee72b054a4
aoliva [Sat, 15 Dec 2012 10:24:50 +0000 (10:24 +0000)]
* mf-hooks1.c (free): Return on NULL before any logging.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194518
138bc75d-0d04-0410-961f-
82ee72b054a4
jason [Sat, 15 Dec 2012 04:02:52 +0000 (04:02 +0000)]
PR c++/55685
* pt.c (tsubst_copy_and_build): Don't use SIZEOF_EXPR_TYPE_P in
templates.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194517
138bc75d-0d04-0410-961f-
82ee72b054a4
gccadmin [Sat, 15 Dec 2012 00:18:14 +0000 (00:18 +0000)]
Daily bump.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194515
138bc75d-0d04-0410-961f-
82ee72b054a4
sje [Fri, 14 Dec 2012 22:50:38 +0000 (22:50 +0000)]
2012-12-14 Steve Ellcey <sellcey@mips.com>
PR regression/55688
* g++.dg/other/pr55650.C: Add dg-require-profiling.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194512
138bc75d-0d04-0410-961f-
82ee72b054a4
sje [Fri, 14 Dec 2012 22:03:40 +0000 (22:03 +0000)]
2012-12-14 Steve Ellcey <sellcey@mips.com>
* testsuite/21_strings/basic_string/append/wchar_t/3.cc: Shrink
memory usage under simulator.
* testsuite/21_strings/basic_string/cons/wchar_t/6.cc: Ditto.
* testsuite/21_strings/basic_string/inserters_extractors/wchar_t/10.cc:
Ditto.
* testsuite/21_strings/basic_string/inserters_extractors/wchar_t/11.cc:
Ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194510
138bc75d-0d04-0410-961f-
82ee72b054a4
jason [Fri, 14 Dec 2012 20:57:55 +0000 (20:57 +0000)]
PR c++/42315
* decl.c (maybe_deduce_size_from_array_init): Don't change the
variable type.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194509
138bc75d-0d04-0410-961f-
82ee72b054a4
rth [Fri, 14 Dec 2012 16:24:48 +0000 (16:24 +0000)]
* optabs.c (expand_atomic_store): Elide redundant model test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194504
138bc75d-0d04-0410-961f-
82ee72b054a4
tejohnson [Fri, 14 Dec 2012 15:10:45 +0000 (15:10 +0000)]
2012-12-14 Teresa Johnson <tejohnson@google.com>
PR gcov-profile/55674
* lto-cgraph.c (merge_profile_summaries): Set min correctly the
first time we merge into a histogram entry.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194502
138bc75d-0d04-0410-961f-
82ee72b054a4
ian [Fri, 14 Dec 2012 15:02:02 +0000 (15:02 +0000)]
compiler: Better error message for invalid shift operations.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194501
138bc75d-0d04-0410-961f-
82ee72b054a4
rguenth [Fri, 14 Dec 2012 13:35:03 +0000 (13:35 +0000)]
2012-12-14 Richard Biener <rguenther@suse.de>
PR tree-optimization/55684
* tree-ssa-loop-ivcanon.c (remove_redundant_iv_tests): Handle
gracefully the case where we cannot compute the number of
iterations at an exit.
* gcc.dg/torture/pr55684.c: New testcase.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194499
138bc75d-0d04-0410-961f-
82ee72b054a4
rguenth [Fri, 14 Dec 2012 12:57:27 +0000 (12:57 +0000)]
2012-12-14 Richard Biener <rguenther@suse.de>
PR tree-optimization/55687
* tree-chrec.h (no_evolution_in_loop_p): Properly use
tree_contains_chrecs.
* gcc.dg/torture/pr55687.c: New testcase.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194498
138bc75d-0d04-0410-961f-
82ee72b054a4
gccadmin [Fri, 14 Dec 2012 00:19:41 +0000 (00:19 +0000)]
Daily bump.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194495
138bc75d-0d04-0410-961f-
82ee72b054a4
ian [Thu, 13 Dec 2012 22:20:23 +0000 (22:20 +0000)]
compiler: Accept trailing comma after varargs parameter.
Also fix handling of interfaces seen only in a function or
method declaration.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194492
138bc75d-0d04-0410-961f-
82ee72b054a4
rth [Thu, 13 Dec 2012 21:16:45 +0000 (21:16 +0000)]
PR middle-end/55492
* optabs.c (expand_atomic_load): Emit acquire barrier after the load.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194490
138bc75d-0d04-0410-961f-
82ee72b054a4
sje [Thu, 13 Dec 2012 19:55:13 +0000 (19:55 +0000)]
2012-12-13 Steve Ellcey <sellcey@mips.com>
* testsuite/21_strings/basic_string/capacity/char/18654.cc: Shrink
memory usage under simulator.
* testsuite/21_strings/basic_string/capacity/wchar_t/18654.cc: Ditto.
* testsuite/22_locale/collate/transform/char/28277.cc: Ditto.
* testsuite/22_locale/collate/transform/wchar_t/28277.cc: Ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194488
138bc75d-0d04-0410-961f-
82ee72b054a4
rth [Thu, 13 Dec 2012 19:31:06 +0000 (19:31 +0000)]
alpha: Consider barriers when placing nops after sibcalls
* config/alpha/alpha.c (alpha_pad_function_end): Consider barriers
when looking for NOTE_INSN_CALL_ARG_LOCATION.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194484
138bc75d-0d04-0410-961f-
82ee72b054a4
rguenth [Thu, 13 Dec 2012 15:20:57 +0000 (15:20 +0000)]
2012-12-13 Richard Biener <rguenther@suse.de>
PR middle-end/53476
* varpool.c (varpool_remove_unreferenced_decls): Revert to 4.7
behavior.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194481
138bc75d-0d04-0410-961f-
82ee72b054a4
jakub [Thu, 13 Dec 2012 14:35:12 +0000 (14:35 +0000)]
PR c++/55652
* typeck2.c (merge_exception_specifiers): Don't call operand_equal_p
if noex is NULL.
* g++.dg/cpp0x/noexcept19.C: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194479
138bc75d-0d04-0410-961f-
82ee72b054a4
ktkachov [Thu, 13 Dec 2012 14:33:29 +0000 (14:33 +0000)]
2012-12-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/arm/unspecs.md: Add copyright notice.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194478
138bc75d-0d04-0410-961f-
82ee72b054a4
jakub [Thu, 13 Dec 2012 13:28:54 +0000 (13:28 +0000)]
* tree-ssa-threadedge.c (propagate_threaded_block_debug_into): Avoid
-Wsign-compare warning.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194476
138bc75d-0d04-0410-961f-
82ee72b054a4
jakub [Thu, 13 Dec 2012 12:35:56 +0000 (12:35 +0000)]
* math/cbrtq.c (cbrtq): Use Q suffixed floating point constants
instead of L suffixed ones.
* math/fmaq.c (fmaq): Likewise.
* math/rintq.c (TWO112): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194475
138bc75d-0d04-0410-961f-
82ee72b054a4
nickc [Thu, 13 Dec 2012 12:05:30 +0000 (12:05 +0000)]
* config/arm/fp16.c (__gnu_f2h_internal): Fix inaccuracy when aexp
is 25.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194474
138bc75d-0d04-0410-961f-
82ee72b054a4
rguenth [Thu, 13 Dec 2012 11:13:13 +0000 (11:13 +0000)]
2012-12-13 Richard Biener <rguenther@suse.de>
PR lto/55660
* tree-streamer.c (record_common_node): Check that we are not
recursively pre-loading nodes we want to skip. Handle
char_type_node appearing as part of va_list_type_node.
* gcc.dg/lto/pr55660_0.c: New testcase.
* gcc.dg/lto/pr55660_1.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194473
138bc75d-0d04-0410-961f-
82ee72b054a4
steven [Thu, 13 Dec 2012 10:38:43 +0000 (10:38 +0000)]
* Makefile.in: Fix bitmap.o dependencies.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194472
138bc75d-0d04-0410-961f-
82ee72b054a4
jakub [Thu, 13 Dec 2012 10:11:39 +0000 (10:11 +0000)]
PR gcov-profile/55650
* coverage.c (coverage_obj_init): Return false if no functions
are being emitted.
* g++.dg/other/pr55650.C: New test.
* g++.dg/other/pr55650.cc: New file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194470
138bc75d-0d04-0410-961f-
82ee72b054a4
steven [Thu, 13 Dec 2012 10:02:39 +0000 (10:02 +0000)]
* bitmap.c (struct bitmap_descriptor): Remove forward declaration.
(struct bitmap_head_def): Remove desc pointer. Add descriptor_id
field. Reorder fields for pointer alignment.
* bitmap.c: Include vec.h.
(struct bitmap_descriptor): Rename to bitmap_descriptor_d.
(bitmap_descriptor): New typedef, pointer to bitmap_descriptor_d.
Update all struct bitmap_descriptor references.
(next_bitmap_desc_id): New running index for bitmap desciptors.
(bitmap_descriptors): Vec of all bitmap descriptors by descriptor id.
(hash_descriptor, eq_descriptor): Update for struct bitmap_descriptor
change.
(bitmap_descriptor): Rename function to get_bitmap_descriptor.
Stuff newly allocated bitmap descriptor into bitmap_descriptors.
Set the bitmap descriptor id.
(bitmap_register): Lookup bitmap desciptor and store its ID in
the passed bitmap.
(register_overhead): Likewise.
(bitmap_find_bit): Lookup descriptor by id in bitmap_descriptors.
(print_statistics): Update for struct bitmap_descriptor change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194469
138bc75d-0d04-0410-961f-
82ee72b054a4
rguenth [Thu, 13 Dec 2012 09:32:56 +0000 (09:32 +0000)]
2012-12-13 Richard Biener <rguenther@suse.de>
* tree-ssa-pre.c (get_representative_for): Adjust dumping.
Mark created SSA names for release.
(eliminate_bb): Insert only when expr is not NULL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194468
138bc75d-0d04-0410-961f-
82ee72b054a4
gccadmin [Thu, 13 Dec 2012 00:19:21 +0000 (00:19 +0000)]
Daily bump.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194466
138bc75d-0d04-0410-961f-
82ee72b054a4
ian [Wed, 12 Dec 2012 23:29:10 +0000 (23:29 +0000)]
runtime: Delete from a nil map is now a no-op.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194462
138bc75d-0d04-0410-961f-
82ee72b054a4
jakub [Wed, 12 Dec 2012 23:19:32 +0000 (23:19 +0000)]
PR debug/55665
* tree-inline.c (remap_decls): Change nonlocalized_list
to pointer to pointer to vector from pointer to vector.
(remap_block): Pass address of BLOCK_NONLOCALIZED_VARS.
* g++.dg/guality/pr55665.C: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194461
138bc75d-0d04-0410-961f-
82ee72b054a4
ian [Wed, 12 Dec 2012 23:13:29 +0000 (23:13 +0000)]
libgo: Update to current master library sources.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194460
138bc75d-0d04-0410-961f-
82ee72b054a4
jakub [Wed, 12 Dec 2012 23:05:23 +0000 (23:05 +0000)]
PR sanitizer/55508
* builtin-attrs.def (ATTR_TMPURE_NOTHROW_LEAF_LIST,
ATTR_TMPURE_NORETURN_NOTHROW_LEAF_LIST): New.
* asan.c (ATTR_TMPURE_NOTHROW_LEAF_LIST,
ATTR_TMPURE_NORETURN_NOTHROW_LEAF_LIST): Define.
* sanitizer.def: Make __asan_report_* and __asan_handle_no_return
builtins tm pure.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194459
138bc75d-0d04-0410-961f-
82ee72b054a4
jakub [Wed, 12 Dec 2012 23:04:22 +0000 (23:04 +0000)]
* lib/gcc-dg.exp (${tool}_load): Handle non-existing
set_target_env_var the same as if it is empty list.
(dg-set-target-env-var): Fix up error message.
(set-target-env-var): Record both preexisting env var values
as well as info that env wasn't set.
(restore-target-env-var): Iterate on reversed list, if second
sublist element is 1, setenv the env var to the third sublist
element, otherwise unsetenv it.
(gcc-dg-runtest): Don't initialize set_target_env_var.
(dg-test): Unset set_target_env_var if it was set.
* g++.dg/asan/deep-tail-call-1.C: Whitespace fixes. Don't rely
on argc being one.
* g++.dg/asan/interception-malloc-test-1.C: Only run on linux.
Whitespace fixes. Avoid unnecessary * sizeof(char).
* g++.dg/asan/deep-thread-stack-1.C: Add -lasan -lpthread to
dg-options. Whitespace fixes.
* g++.dg/asan/deep-stack-uaf-1.C: Skip for -flto. Whitespace fixes.
* g++.dg/asan/interception-test-1.C: Whitespace fixes.
* g++.dg/asan/interception-failure-test-1.C: Whitespace fixes.
Avoid unnecessary * sizeof(char). Remove // CHECK: comment.
* g++.dg/asan/default-options-1.C: Whitespace fixes.
* g++.dg/asan/symbolize-callback-1.C: Whitespace fixes. Make
first __asan_symbolize argument unnamed. Avoid unnecessary
* sizeof(char).
* g++.dg/asan/large-func-test-1.C: Whitespace fixes. Don't rely
on argc being one. Allow both _Znwj and _Znwm as operator new.
Ignore everything in the backtrace above operator new. Fix up
dg-output regexps.
* c-c++-common/asan/null-deref-1.c: Add -fno-omit-frame-pointer
and for x86 -mno-omit-leaf-frame-pointer. Fix up dg-output regexps.
* c-c++-common/asan/clone-test-1.c: Whitespace fixes. Return non-zero
on failures. Avoid pointless PASS dg-output check. Remove bogus
dg-shouldfail.
* c-c++-common/asan/sanity-check-pure-c-1.c: Fix up dg-output regexps.
Avoid unnecessary * sizeof(char).
* c-c++-common/asan/heap-overflow-1.c: Fix up dg-output regexps.
Don't rely on argc being one.
* c-c++-common/asan/sleep-before-dying-1.c: Whitespace fixes.
Avoid unnecessary * sizeof(char).
* c-c++-common/asan/rlimit-mmap-test-1.c: Whitespace fixes.
* c-c++-common/asan/stack-overflow-1.c: Fix up dg-output regexps.
* c-c++-common/asan/global-overflow-1.c: Add -fno-builtin-memset.
Fix up dg-output regexps.
* c-c++-common/asan/strncpy-overflow-1.c: Fix up dg-output regexps.
* c-c++-common/asan/memcmp-1.c: Don't rely on argc being one.
* c-c++-common/asan/use-after-free-1.c: Fix up dg-output regexps.
* c-c++-common/asan/swapcontext-test-1.c: Don't rely on argc being
one.
* c-c++-common/asan/force-inline-opt0-1.c: Remove dg-skip-if.
* c-c++-common/asan/strip-path-prefix-1.c: Whitespace fixes.
Avoid unnecessary * sizeof(char).
2012-12-12 Wei Mi <wmi@google.com>
* lib/target-supports.exp (check_effective_target_dlopen,
check_effective_target_clone, check_effective_target_setrlimit,
check_effective_target_swapcontext): New procedures.
* lib/gcc-dg.exp (${tool}_load): Handle dg-set-target-env-var.
(dg-set-target-env-var, set-target-env-var,
restore-target-env-var): New procedures.
(gcc-dg-runtest): Set set_target_env_var.
* g++.dg/asan/symbolize-callback-1.C: New test.
* g++.dg/asan/shared-lib-test-1-so.cc: New file.
* g++.dg/asan/deep-tail-call-1.C: New test.
* g++.dg/asan/default-options-1.C: New test.
* g++.dg/asan/interception-test-1.C: New test.
* g++.dg/asan/dlclose-test-1-so.cc: New file.
* g++.dg/asan/deep-thread-stack-1.C: New test.
* g++.dg/asan/interception-malloc-test-1.C: New test.
* g++.dg/asan/deep-stack-uaf-1.C: New test.
* g++.dg/asan/large-func-test-1.C: New test.
* g++.dg/asan/interception-failure-test-1.C: New test.
* c-c++-common/asan/strip-path-prefix-1.c: New test.
* c-c++-common/asan/force-inline-opt0-1.c: New test.
* c-c++-common/asan/swapcontext-test-1.c: New test.
* c-c++-common/asan/null-deref-1.c: New test.
* c-c++-common/asan/global-overflow-1.c: New test.
* c-c++-common/asan/strncpy-overflow-1.c: New test.
* c-c++-common/asan/rlimit-mmap-test-1.c: New test.
* c-c++-common/asan/stack-overflow-1.c: New test.
* c-c++-common/asan/use-after-free-1.c: New test.
* c-c++-common/asan/sanity-check-pure-c-1.c: New test.
* c-c++-common/asan/clone-test-1.c: New test.
* c-c++-common/asan/heap-overflow-1.c: New test.
* c-c++-common/asan/sleep-before-dying-1.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194458
138bc75d-0d04-0410-961f-
82ee72b054a4
bkoz [Wed, 12 Dec 2012 22:15:30 +0000 (22:15 +0000)]
2012-12-12 Benjamin Kosnik <bkoz@redhat.com>
* doc/xml/manual/documentation_hacking.xml: Fix validation issue.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194455
138bc75d-0d04-0410-961f-
82ee72b054a4
sje [Wed, 12 Dec 2012 21:16:18 +0000 (21:16 +0000)]
2012-12-12 Steve Ellcey <sellcey@mips.com>
* gcc.dg/pr55150-2.c: Add pic support check.
* gcc.dg/lto/pr54709_0.c: Ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194454
138bc75d-0d04-0410-961f-
82ee72b054a4
sje [Wed, 12 Dec 2012 21:14:31 +0000 (21:14 +0000)]
2012-12-12 Steve Ellcey <sellcey@mips.com>
* config/mips/mips.c (mips_option_override): Set
mips_dbx_regno entries to IGNORED_DWARF_REGNUM by default.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194453
138bc75d-0d04-0410-961f-
82ee72b054a4