François Dumont
e25d2617ac
basic_string.h (basic_string<>::front()): Add !empty debug check.
...
2015-06-24 François Dumont <fdumont@gcc.gnu.org>
* include/bits/basic_string.h (basic_string<>::front()): Add !empty
debug check.
(basic_string<>::back()): Likewise.
(basic_string<>::pop_back()): Likewise.
From-SVN: r224919
2015-06-24 20:12:05 +00:00
Jason Merrill
e6d6151387
re PR c++/66647 (ICE: in instantiate_class_template_1, at cp/pt.c:9254)
...
PR c++/66647
* pt.c (dependent_type_p_r): Check for dependent alias template
specialization sooner.
From-SVN: r224917
2015-06-24 15:59:28 -04:00
Alan Lawrence
31ca7cbaa8
[AArch64] Fix another ICE with -mgeneral-regs-only
...
gcc/:
* config/aarch64/aarch64.md (<optab><fcvt_target><GPF:mode>2):
Condition on TARGET_FLOAT.
gcc/testsuite/:
* gcc.target/aarch64/mgeneral-regs_3.c: New.
From-SVN: r224910
2015-06-24 16:26:38 +00:00
Alan Lawrence
a591e1d14a
[AArch64 Doc] Clarify feature modifiers {no,}{fp,simd,crypto}
...
gcc:
* doc/invoke.texi: Clarify AArch64 feature modifiers (no)fp, (no)simd
and (no)crypto.
From-SVN: r224909
2015-06-24 16:15:53 +00:00
Alan Lawrence
261fb553d2
[AArch64] Fix ICES with -mgeneral-regs-only / -march=...+nofp
...
gcc/ChangeLog:
* config/aarch64/aarch64-protos.h (aarch64_err_no_fpadvsimd): New.
* config/aarch64/aarch64.md (mov<mode>/GPF, movtf): Use
aarch64_err_no_fpadvsimd.
* config/aarch64/aarch64.c (aarch64_err_no_fpadvsimd): New.
(aarch64_layout_arg, aarch64_init_cumulative_args): Use
aarch64_err_no_fpadvsimd if !TARGET_FLOAT and we need FP regs.
(aarch64_expand_builtin_va_start, aarch64_setup_incoming_varargs):
Turn error into assert, test TARGET_FLOAT.
(aarch64_gimplify_va_arg_expr): Use aarch64_err_no_fpadvsimd, test
TARGET_FLOAT.
gcc/testsuite/ChangeLog:
* gcc.target/aarch64/mgeneral-regs_1.c: New file.
* gcc.target/aarch64/mgeneral-regs_2.c: New file.
* gcc.target/aarch64/nofp_1.c: New file.
From-SVN: r224908
2015-06-24 16:13:28 +00:00
Aldy Hernandez
4ca1ca5bdb
* dwarf2out.c (gen_formal_parameter_die): Remove assert.
...
From-SVN: r224907
2015-06-24 15:58:13 +00:00
Jason Merrill
024f2d8923
re PR c++/66501 (Default move assignment does not move array members)
...
PR c++/66501
* class.c (type_has_nontrivial_assignment): Remove.
* cp-tree.h: Remove declaration.
* init.c (vec_copy_assign_is_trivial): New.
(build_vec_init): Use it.
From-SVN: r224904
2015-06-24 11:40:08 -04:00
Edward Smith-Rowland
e79fc3d4d7
Implement N3928 - Extending static_assert
...
cp/
2015-06-24 Edward Smith-Rowland <3dw4rd@verizon.net>
Implement N3928 - Extending static_assert
* parser.c (cp_parser_static_assert): Support static_assert with
no message string. Supply an empty string in this case.
* semantics.c (finish_static_assert): Don't try to print a message if
the message strnig is empty.
testsuite/
2015-06-24 Edward Smith-Rowland <3dw4rd@verizon.net>
Implement N3928 - Extending static_assert
* g++.dg/cpp0x/static_assert8.C: Adjust.
* g++.dg/cpp0x/static_assert12.C: New.
* g++.dg/cpp0x/static_assert13.C: New.
* g++.dg/cpp1y/static_assert1.C: New.
* g++.dg/cpp1y/static_assert2.C: New.
* g++.dg/cpp1z/static_assert-nomsg.C: New.
From-SVN: r224903
2015-06-24 15:27:04 +00:00
Adam Butcher
aa97bb6f12
re PR c++/65750 (misinterpret in a virtual member function with a C++11 style function signature)
...
/cp
2015-06-24 Adam Butcher <adam@jessamine.co.uk>
PR c++/65750
* parser.c (cp_parser_simple_type_specifier): Don't synthesize
implicit template parm if 'auto' is a placeholder for trailing
return type.
/testsuite
2015-06-24 Adam Butcher <adam@jessamine.co.uk>
PR c++/65750
* g++.dg/cpp0x/trailing11.C: New.
From-SVN: r224901
2015-06-24 15:11:06 +00:00
Ilya Enkovich
e00cdb8a65
tree-vect-slp.c (vect_build_slp_tree_1): Init vectype.
...
* tree-vect-slp.c (vect_build_slp_tree_1): Init vectype.
From-SVN: r224900
2015-06-24 14:09:46 +00:00
Ramana Radhakrishnan
150cc0b54f
Skip tests for inappropriate multilibs.
...
2015-06-24 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
* gcc.target/arm/fixed_float_conversion.c: Skip for inappropriate
multilibs.
* gcc.target/arm/memset-inline-10.c: Likewise.
* gcc.target/arm/pr58784.c: Likewise.
* gcc.target/arm/pr59985.C: Likewise.
* gcc.target/arm/vfp-1.c: Likewise and test only for the non fma cases.
From-SVN: r224899
2015-06-24 14:08:03 +00:00
Renlin Li
b6aada16dd
[PATCH][AARCH64]Add ACLE predefined marcos: __ARM_ALIGN_MAX_PWR and
...
__ARM_ALIGN_MAX_STACK_PWR
gcc/
2015-06-24 Renlin Li <renlin.li@arm.com>
* config/aarch64/aarch64.h(TARGET_CPU_CPP_BUILTINS): Add
__ARM_ALIGN_MAX_PWR, __ARM_ALIGN_MAX_STACK_PWR.
gcc/testsuite/
2015-06-24 Renlin Li <renlin.li@arm.com>
* gcc.target/aarch64/arm_align_max_pwr.c: New.
* gcc.target/aarch64/arm_align_max_stack_pwr.c: New.
From-SVN: r224898
2015-06-24 13:36:53 +00:00
Paolo Carlini
a2055cc9e5
get_neg.cc: Adjust dg-error line numbers.
...
2015-06-24 Paolo Carlini <paolo.carlini@oracle.com>
* testsuite/23_containers/array/tuple_interface/get_neg.cc: Adjust
dg-error line numbers.
* testsuite/23_containers/array/tuple_interface/tuple_element_neg.cc:
Likewise.
From-SVN: r224897
2015-06-24 12:18:29 +00:00
Patrick Palka
7af8ef58c1
Revert fix for PR c++/30044
...
gcc/cp/ChangeLog:
Revert:
2015-06-23 Patrick Palka <ppalka@gcc.gnu.org>
PR c++/30044
* parser.c (cp_parser_template_parameter_list): Update
current_template_parms right after processing a paramater.
* pt.c (template_parms_to_args): Remove obsolete hack for
giving template template arguments the proper level.
(check_default_tmpl_args): Account for tested template
parameter_lists.
(splite_late_return_type): Remove obsolete hack for giving
template template arguments the proper level.
gcc/testsuite/ChangeLog:
Revert:
2015-06-23 Patrick Palka <ppalka@gcc.gnu.org>
PR c++/30044
* g++.dg/cpp0x/auto45.C: New test.
* g++.dg/template/pr30044.C: New test.
* g++.dg/template/crash83.C: Accept any error string.
* g++.dg/cpp0x/variadic18.C: Adjust to not shadow template
parameters.
* g++.dg/cpp0x/variadic18.C: Likewise
* g++.dg/template/canon-type-13.C: Likewise.
* g++.old-deja/g++.pt/ttp42.C: Likewise.
From-SVN: r224896
2015-06-24 12:10:57 +00:00
Richard Biener
3979182284
genmatch.c (enum tree_code): Add VIEW_CONVERT[012].
...
2015-06-24 Richard Biener <rguenther@suse.de>
* genmatch.c (enum tree_code): Add VIEW_CONVERT[012].
(main): Likewise.
(lower_opt_convert): Support lowering of conditional view_convert.
(parser::parse_operation): Likewise.
(parser::parse_for): Likewise.
From-SVN: r224893
2015-06-24 10:53:53 +00:00
Paolo Carlini
72e839ca6b
re PR c++/65811 (ice in vague_linkage_p)
...
/cp
2015-06-24 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/65811
* decl.c (duplicate_decls): Adjust DECL_COMDAT of newdecl.
/testsuite
2015-06-24 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/65811
* g++.dg/other/linkage2.C: New.
From-SVN: r224888
2015-06-24 09:21:45 +00:00
Renlin Li
61c580ea4d
[PATCH]Use "unsigned int" to hold alignment in emit_local function.
...
gcc/
2015-06-24 Renlin Li <renlin.li@arm.com>
* varasm.c (emit_local): Use unsigned int for align variable.
From-SVN: r224880
2015-06-24 08:35:20 +00:00
Ramana Radhakrishnan
ce72a3c995
re PR target/63408 (GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target)
...
Fix PR target/63408
The attached patch fixes PR target/63408 and adds a regression test
for the same. The problem is essentially that
vfp3_const_double_for_fract_bits() needs to be aware that negative
values cannot be used in this context.
Tested with a bootstrap and regression test run on armhf. Applied.
2015-06-24 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
PR target/63408
* config/arm/arm.c (vfp3_const_double_for_fract_bits): Disable
for negative numbers.
2015-06-24 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
PR target/63408
* gcc.target/arm/pr63408.c: New test.
From-SVN: r224879
2015-06-24 08:28:08 +00:00
James Greenhalgh
0bc64a6ca5
[PATCH][testsuite] Fix TORTURE_OPTIONS overriding
...
gcc/testsuite/
* lib/c-torture.exp: Don't call check_effective_target_lto
before setting up environment correctly.
* lib/gcc-dg.exp: Likewise, and protect
gcc_force_conventional_output.
From-SVN: r224878
2015-06-24 08:22:35 +00:00
Andreas Krebbel
f303100baa
PR66306: Fix match_dups on swapped operands.
...
2015-06-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
PR rtl-optimization/66306
* reload.c (find_reloads): Swap the match_dup info for
commutative operands.
2015-06-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
PR rtl-optimization/66306
* gcc.target/s390/pr66306.c: New test.
From-SVN: r224875
2015-06-24 06:50:53 +00:00
Andreas Krebbel
af77d1df02
S/390: Switch mode attribute to bhfgq for vec scatter
...
gcc/ChangeLog:
2015-06-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* config/s390/vx-builtins.md
("vec_scatter_element<mode>_<non_vec_int>")
("vec_scatter_element<V_HW_64:mode>_SI"): Replace gf mode
attribute with bhfgq.
From-SVN: r224874
2015-06-24 06:47:47 +00:00
Andreas Krebbel
70216ebab6
S/390: Add proper comments to vpopct builtins for automated testsuite generation.
...
gcc/ChangeLog:
2015-06-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* config/s390/s390-builtins.def: Fix vpopct instruction comments.
From-SVN: r224873
2015-06-24 06:46:27 +00:00
Andreas Krebbel
f4d28290bb
S/390: Make builtin creation conditional.
...
gcc/ChangeLog:
2015-06-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* config/s390/s390-builtin-types.def: Add flag to indicate the
options under which the function type is needed.
* config/s390/s390-builtins.def: Add flag to indicate the options
under which the builtin is enabled.
* config/s390/s390-builtins.h: Add flags parameter to macro
definitions.
(bflags_for_builtin): New function.
(flags_for_builtin): Renamed to ...
(opflags_for_builtin): ... this.
* config/s390/s390-c.c (s390_resolve_overloaded_builtin): Rename
flags_for_builtin to bflags_for_builtin and
flags_overloaded_builtin_var to opflags_overloaded_builtin_var.
* config/s390/s390.c: Add initialization of bflags_builtin and
opflags_builtin arrays.
Remove code for flags_builtin.
(s390_init_builtins): Only create builtin function types if one of
their flags is active.
Only create builtins if all of their flags are active.
(s390_expand_builtin): Rename flags_for_builtin to
opflags_for_builtin.
From-SVN: r224872
2015-06-24 06:44:59 +00:00
Andreas Krebbel
f1497499e1
S/390: Remove internal builtins from vecintrin.h.
...
gcc/ChangeLog:
2015-06-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* config/s390/vecintrin.h: Remove internal builtins.
From-SVN: r224871
2015-06-24 06:42:52 +00:00
Andreas Krebbel
996fcca1ec
S/390: Fix s390_secondary_reload register class check.
...
gcc/ChangeLog:
2015-06-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* config/s390/s390.c (s390_secondary_reload): Fix check for
GENERAL_REGS register class.
From-SVN: r224870
2015-06-24 06:41:10 +00:00
Andreas Krebbel
920cc6968d
S/390: Disable effect of support_vector_misalignment
...
gcc/ChangeLog:
2015-06-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* config/s390/s390.c (s390_support_vector_misalignment): Call
default implementation for !TARGET_VX.
From-SVN: r224869
2015-06-24 06:39:55 +00:00
Andreas Krebbel
0600d22cbb
S/390: Limit legitimate_constant_p changes to TARGET_VX.
...
gcc/ChangeLog:
2015-06-23 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* config/s390/s390.c (s390_legitimate_constant_p): Add
TARGET_VX check.
From-SVN: r224868
2015-06-24 06:38:32 +00:00
Andreas Krebbel
45901378cd
S/390 Vector ABI GNU Attribute.
...
gcc/
* config/s390/s390.c (s390_vector_abi): New variable definition.
(s390_check_type_for_vector_abi): New function.
(TARGET_ASM_FILE_END): New macro definition.
(s390_asm_file_end): New function.
(s390_function_arg): Call s390_check_type_for_vector_abi.
(s390_gimplify_va_arg): Likewise.
* configure: Regenerate.
* configure.ac: Check for .gnu_attribute Binutils feature.
gcc/testsuite/
* gcc.target/s390/vector/vec-abi-1.c: Add gnu attribute check.
* gcc.target/s390/vector/vec-abi-attr-1.c: New test.
* gcc.target/s390/vector/vec-abi-attr-2.c: New test.
* gcc.target/s390/vector/vec-abi-attr-3.c: New test.
* gcc.target/s390/vector/vec-abi-attr-4.c: New test.
* gcc.target/s390/vector/vec-abi-attr-5.c: New test.
* gcc.target/s390/vector/vec-abi-attr-6.c: New test.
From-SVN: r224867
2015-06-24 06:36:46 +00:00
Chen Gang
5a5c3debfe
re PR target/65803 (blackfin: internal compiler error: segment fault linux kernel)
...
PR target/65803
* config/bfin/bfin.c (hwloop_optimize): Initialize
JUMP_LABEL for newly created jump.
PR target/65803
* gcc.c-torture/pr65803.c: New test.
From-SVN: r224866
2015-06-23 22:22:39 -06:00
Patrick Palka
6c4ed5216d
Add PR information to ChangeLog entries for previous change
...
From-SVN: r224865
2015-06-24 01:27:17 +00:00
GCC Administrator
a49eecc0f2
Daily bump.
...
From-SVN: r224862
2015-06-24 00:16:11 +00:00
Patrick Palka
1a8f8908d2
[PATCH] Fix PR c++/30044
...
gcc/cp/ChangeLog:
* parser.c (cp_parser_template_parameter_list): Update
current_template_parms right after processing a paramater.
* pt.c (template_parms_to_args): Remove obsolete hack for
giving template template arguments the proper level.
(check_default_tmpl_args): Account for tested template
parameter_lists.
(splite_late_return_type): Remove obsolete hack for giving
template template arguments the proper level.
gcc/testsuite/ChangeLog
* g++.dg/cpp0x/auto45.C: New test.
* g++.dg/template/pr30044.C: New test.
* g++.dg/template/crash83.C: Accept any error string.
* g++.dg/cpp0x/variadic18.C: Adjust to not shadow template
parameters.
* g++.dg/cpp0x/variadic18.C: Likewise
* g++.dg/template/canon-type-13.C: Likewise.
* g++.old-deja/g++.pt/ttp42.C: Likewise.
From-SVN: r224859
2015-06-23 23:41:51 +00:00
Tristan Gingold
8289f048f0
collect-utils.c (collect_wait): Unlink the response file here instead of...
...
* collect-utils.c (collect_wait): Unlink the response file here
instead of...
(do_wait): ...here.
(utils_cleanup): ...and here.
From-SVN: r224858
2015-06-23 20:48:07 +00:00
François Dumont
7d17de7f73
array: Include <array>.
...
2015-06-23 François Dumont <fdumont@gcc.gnu.org>
* include/debug/array: Include <array>. Add version namespace when
specializing tuple interface to array. Add specialization for
__is_tuple_like_impl.
* include/profile/array: Likewise.
* include/std/array: Include <utility>. Add specialization for
__is_tuple_like_impl.
* include/std/tuple
(__is_tuple_like_impl<>, __is_tuple_like_impl<pair>): Move...
* include/std/utility: ... here. Include <type_traits>.
* testsuite/23_containers/array/tuple_interface/get_debug_neg.cc: Adjust
dg-error line number.
* testsuite/23_containers/array/tuple_interface/
tuple_element_debug_neg.cc: Likewise.
From-SVN: r224857
2015-06-23 19:51:02 +00:00
Richard Sandiford
0fa16060ed
c-common.c: Don't include target-def.h.
...
gcc/c-family/
* c-common.c: Don't include target-def.h.
gcc/
* df-scan.c: Don't include target-def.h.
* targhooks.c: Likewise.
* config/arm/arm-c.c: Likewise.
* config/i386/i386-c.c: Likewise.
* config/nds32/nds32-cost.c: Likewise.
* config/nds32/nds32-fp-as-gp.c: Likewise.
* config/nds32/nds32-intrinsic.c: Likewise.
* config/nds32/nds32-isr.c: Likewise.
* config/nds32/nds32-md-auxiliary.c: Likewise.
* config/nds32/nds32-memory-manipulation.c: Likewise.
* config/nds32/nds32-pipelines-auxiliary.c: Likewise.
* config/nds32/nds32-predicates.c: Likewise.
From-SVN: r224856
2015-06-23 18:26:49 +00:00
Andreas Tobler
6d9d1eeb97
configure.ac: Fix check for header <sys/sysctl.h>.
...
2015-06-23 Andreas Tobler <andreast@gcc.gnu.org>
* configure.ac: Fix check for header <sys/sysctl.h>.
* configure: Regenerate.
* config.h.in: Likewise.
From-SVN: r224855
2015-06-23 19:59:59 +02:00
James Lemke
4fa0f9ea8c
lib1funcs.S (aeabi_idiv0, [...]): Add CFI entries.
...
2015-06-23 James Lemke <jwlemke@codesourcery.com>
libgcc/config/arm/
* lib1funcs.S (aeabi_idiv0, aeabi_ldiv0): Add CFI entries.
From-SVN: r224854
2015-06-23 17:45:18 +00:00
Marek Polacek
a68ae2e1b1
c-common.c (warn_logical_operator): Use tree_int_cst_equal when comparing INTEGER_CSTs.
...
* c-common.c (warn_logical_operator): Use tree_int_cst_equal
when comparing INTEGER_CSTs.
* c-c++-common/Wlogical-op-3.c: New test.
From-SVN: r224853
2015-06-23 17:10:10 +00:00
Paolo Carlini
171561ca33
re PR c++/66254 (Member function shadowing enum classes)
...
2015-06-23 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/66254
* g++.dg/cpp0x/scoped_enum5.C: New.
From-SVN: r224851
2015-06-23 15:42:31 +00:00
Tom de Vries
1222f22bd8
Use abort in parloops-exit-first-loop-alt-{3,4}.c
...
2015-06-23 Tom de Vries <tom@codesourcery.com>
* testsuite/libgomp.c/parloops-exit-first-loop-alt-3.c (main): Use
abort.
* testsuite/libgomp.c/parloops-exit-first-loop-alt-4.c (main): Same.
From-SVN: r224849
2015-06-23 15:02:25 +00:00
Jason Merrill
d88511aec7
re PR c++/65879 (Bogus linkage errors for member class of anonymous class)
...
PR c++/65879
* decl.c (grokfndecl): Check the linkage of ctype, not just
TYPE_ANONYMOUS_P.
* tree.c (no_linkage_check): Skip the 'this' pointer.
From-SVN: r224844
2015-06-23 10:08:30 -04:00
Jason Merrill
115ef7c52e
re PR c++/66501 (Default move assignment does not move array members)
...
PR c++/66501
* class.c (type_has_nontrivial_assignment): New.
* init.c (build_vec_init): Use it.
* cp-tree.h: Declare it.
* method.c (trivial_fn_p): Templates aren't trivial.
From-SVN: r224843
2015-06-23 10:08:25 -04:00
Jason Merrill
d4c9e7f922
re PR c++/66542 ([C++11] Can create static variable of type that has deleted destructor)
...
PR c++/66542
* decl.c (expand_static_init): Make sure the destructor is callable
here even if we have an initializer.
From-SVN: r224842
2015-06-23 10:08:19 -04:00
Richard Biener
c079cbacb7
re PR tree-optimization/66636 (ICE in vect_get_vec_def_for_stmt_copy, at tree-vect-stmts.c:1590)
...
2015-06-23 Richard Biener <rguenther@suse.de>
PR tree-optimization/66636
* tree-vect-stmts.c (vectorizable_store): Properly compute the
def type for further defs for strided stores.
* gcc.dg/vect/pr66636.c: New testcase.
From-SVN: r224841
2015-06-23 13:56:34 +00:00
Nathan Sidwell
224b491b09
nvptx.md (sel_true<mode>, [...]): New conditional selects.
...
* config/nvptx/nvptx.md (sel_true<mode>, sel_false<mode>): New
conditional selects.
(setcc_int<mode>, setcc_float<mode>): Reformat.
From-SVN: r224839
2015-06-23 13:05:15 +00:00
Marek Polacek
9737efaf7e
match.pd ((x + y) - (x | y) -> x & y, (x + y) - (x & y) -> x | y): New patterns.
...
* match.pd ((x + y) - (x | y) -> x & y,
(x + y) - (x & y) -> x | y): New patterns.
* gcc.dg/fold-minus-4.c: New test.
* gcc.dg/fold-minus-5.c: New test.
* c-c++-common/ubsan/overflow-add-5.c: New test.
From-SVN: r224834
2015-06-23 10:09:05 +00:00
James Greenhalgh
7b91cc91f2
[Vax testsuite] Fixup to revision 224672, add missing testcase.
...
Add missing testcase from r224672.
2015-06-19 James Greenhalgh <james.greenhalgh@arm.com>
* gcc.target/vax/bswapdi-1.c: New.
From-SVN: r224832
2015-06-23 10:06:01 +00:00
Andre Vehreschild
76540ac3e3
re PR fortran/64674 ([OOP] ICE in ASSOCIATE with class array)
...
gcc/fortran/ChangeLog:
2015-06-23 Andre Vehreschild <vehre@gmx.de>
PR fortran/64674
* parse.c (parse_associate): Figure the rank and as of a
class array in an associate early.
* primary.c (gfc_match_varspec): Prevent setting the
dimension attribute on the sym for classes.
* resolve.c (resolve_variable): Correct the component
ref's type for associated variables. Add a full array ref
when class array's are associated.
(resolve_assoc_var): Correct the type of the symbol,
when in the associate the expression's rank becomes scalar.
* trans-expr.c (gfc_conv_variable): Indirect ref needed for
allocatable associated objects.
gcc/testsuite/ChangeLog:
2015-06-23 Andre Vehreschild <vehre@gmx.de>
PR fortran/64674
* gfortran.dg/associate_18.f08: New test.
From-SVN: r224827
2015-06-23 11:07:22 +02:00
Ludovic Courtès
bcd119b7a3
re PR target/65711 (arm*-linux* "link" spec passes '-dynamic-linker' even for '-shared')
...
PR 65711
* config/arm/linux-elf.h (LINUX_TARGET_LINK_SPEC): Move
'-dynamic-linker' within %{!shared: ...}.
From-SVN: r224826
2015-06-23 09:06:55 +00:00
Ludovic Courtès
b837291d5a
* MAINTAINERS (Write After Approval): Add myself.
...
From-SVN: r224825
2015-06-23 08:52:51 +00:00