]> git.ipfire.org Git - thirdparty/gcc.git/log
thirdparty/gcc.git
5 years ago libgo: fix go_export extraction on Darwin
ian [Thu, 28 Feb 2019 01:01:46 +0000 (01:01 +0000)] 
libgo: fix go_export extraction on Darwin

    On Darwin, the section name is prefixed with the segment name, __GNU_GO.

    Reviewed-on: https://go-review.googlesource.com/c/151097

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

5 years agoDaily bump.
gccadmin [Thu, 28 Feb 2019 00:16:16 +0000 (00:16 +0000)] 
Daily bump.

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

5 years ago PR c++/88857 - ICE with value-initialization of argument in template.
mpolacek [Thu, 28 Feb 2019 00:07:06 +0000 (00:07 +0000)] 
PR c++/88857 - ICE with value-initialization of argument in template.
* call.c (convert_like_real): Don't call build_value_init in template.

* g++.dg/cpp0x/initlist-value4.C: New test.

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

5 years ago PR go/89172
ian [Wed, 27 Feb 2019 22:35:10 +0000 (22:35 +0000)] 
PR go/89172
    internal/cpu, runtime, runtime/pprof: handle function descriptors

    When using PPC64 ELF ABI v1 a function address is not a PC, but is the
    address of a function descriptor.  The first field in the function
    descriptor is the actual PC (see
    http://refspecs.linuxfoundation.org/ELF/ppc64/PPC-elf64abi.html#FUNC-DES).
    The libbacktrace library knows about this, and libgo uses actual PC
    values consistently except for the helper function funcPC that appears
    in both runtime and runtime/pprof.

    This patch fixes funcPC by recording, in the internal/cpu package,
    whether function descriptors are being used.  We have to check for
    function descriptors using a C compiler check, because GCC can be
    configured using --with-abi to select the ELF ABI to use.

    Fixes https://gcc.gnu.org/PR89172

    Reviewed-on: https://go-review.googlesource.com/c/162978

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

5 years ago PR c++/86969 - ICE with constexpr if and recursive generic lambdas.
jason [Wed, 27 Feb 2019 21:54:25 +0000 (21:54 +0000)] 
PR c++/86969 - ICE with constexpr if and recursive generic lambdas.

Here, the problem was that extract_local_specs wasn't seeing that we use
'self' inside the lambda in the else of the inner constexpr if, because we
don't walk into lambda bodies and we didn't capture it in the lambda because
'self' is still dependent.  Marek recently changed process_outer_var_ref to
do more implicit capture in templates; this example shows that we should
always capture non-packs, so that we can continue to not walk into lambda
bodies.  We do walk into lambda bodies for pack expansions, so we can delay
deciding whether we're capturing a single element or the entire pack.

Immediately capturing a VLA means we need to create a dependent VLA capture
type, and not in the context of the lambda op(), since trying to look up the
instantiation of the op() while we're substituting into the capture list
would crash.  So I force TYPE_CONTEXT and the binding level out to the
enclosing function before pushtag, avoid adding a TAG_DEFN, and instead
force the type to be complete in tsubst_lambda_expr.

* semantics.c (process_outer_var_ref): Do capture dependent vars.
* class.c (finish_struct): Only add TAG_DEFN if T is in
current_function_decl.
* lambda.c (vla_capture_type): Force the capture type out into the
lambda's enclosing function.
(add_capture): Pass in the lambda.
* pt.c (tsubst_lambda_expr): complete_type a VLA capture type.

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

5 years ago2019-02-27 Bernd Edlinger <bernd.edlinger@hotmail.de>
edlinger [Wed, 27 Feb 2019 20:14:55 +0000 (20:14 +0000)] 
2019-02-27  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        PR rtl-optimization/89490
        * varasm.c (get_block_for_section): Bail out for mergeable sections.
        (default_use_anchors_for_symbol_p, output_object_block): Assert the
        block section is not mergeable.

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

5 years ago PR c++/89511 - ICE with using-declaration and unscoped enumerator.
mpolacek [Wed, 27 Feb 2019 19:07:18 +0000 (19:07 +0000)] 
PR c++/89511 - ICE with using-declaration and unscoped enumerator.
* parser.c (cp_parser_using_declaration): For an unscoped enum
only use its context if it's not a function declaration.

* g++.dg/cpp0x/using-enum-3.C: New test.

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

5 years ago PR target/70341
jakub [Wed, 27 Feb 2019 18:11:26 +0000 (18:11 +0000)] 
PR target/70341
* config/aarch64/aarch64.md (casesi): Create the casesi_dispatch
MEM manually here, set MEM_READONLY_P and MEM_NOTRAP_P on it.

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

5 years ago runtime: align first persistentalloc chunk as requested
ian [Wed, 27 Feb 2019 15:51:49 +0000 (15:51 +0000)] 
runtime: align first persistentalloc chunk as requested

    Backport of upstream https://golang.org/cl/163859.

    This fixes various failures on 32-bit SPARC.

    Patch from Eric Boctazou.

    Reviewed-on: https://go-review.googlesource.com/c/163860

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

5 years ago PR tree-optimization/89280
jakub [Wed, 27 Feb 2019 15:22:16 +0000 (15:22 +0000)] 
PR tree-optimization/89280
* gcc.dg/torture/pr57147-2.c (SetNaClSwitchExpectations): Add static
keyword.

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

5 years ago PR target/70341
jakub [Wed, 27 Feb 2019 14:50:35 +0000 (14:50 +0000)] 
PR target/70341
* config/arm/arm.md (arm_casesi_internal): New define_expand.  Rename
old define_insn to ...
(*arm_casesi_internal): ... this.  Add mode to LABEL_REFs.
* config/arm/thumb2.md (thumb2_casesi_internal): New define_expand.
Rename old define_insn to ...
(*thumb2_casesi_internal): ... this.  Add mode to LABEL_REFs.
(thumb2_casesi_internal_pic): New define_expand.  Rename old
define_insn to ...
(*thumb2_casesi_internal_pic): ... this.  Add mode to LABEL_REFs.

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

5 years ago2019-02-27 Richard Biener <rguenther@suse.de>
rguenth [Wed, 27 Feb 2019 14:04:18 +0000 (14:04 +0000)] 
2019-02-27  Richard Biener  <rguenther@suse.de>

PR debug/88878
* dwarf2out.c (use_debug_types): Disable when in_lto_p.

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

5 years ago2019-02-27 Richard Biener <rguenther@suse.de>
rguenth [Wed, 27 Feb 2019 13:24:40 +0000 (13:24 +0000)] 
2019-02-27  Richard Biener  <rguenther@suse.de>

* passes.c (should_skip_pass_p): Do not skip cgraph-edge
building.

* gcc.dg/gimplefe-36.c: New testcase.

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

5 years ago2019-02-27 Richard Biener <rguenther@suse.de>
rguenth [Wed, 27 Feb 2019 12:51:43 +0000 (12:51 +0000)] 
2019-02-27  Richard Biener  <rguenther@suse.de>

PR debug/88878
* dwarf2out.c (output_comdat_type_unit): Add early_lto_debug
parameter, prefix section name with .gnu.debuglto_ if true.
(dwarf2out_finish): Pass false to output_comdat_type_unit.
(dwarf2out_early_finish): Pass true to output_comdat_type_unit.

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

5 years ago2019-02-27 Richard Biener <rguenther@suse.de>
rguenth [Wed, 27 Feb 2019 11:59:07 +0000 (11:59 +0000)] 
2019-02-27  Richard Biener  <rguenther@suse.de>

PR debug/89514
* dwarf2out.c (size_of_die): Key on AT_ref (a)->comdat_type_p
rather than on use_debug_types, doing what output_die does.
(value_format): Likewise.

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

5 years agoPR libstdc++/89466 avoid slow xsltproc command in configure
redi [Wed, 27 Feb 2019 11:25:44 +0000 (11:25 +0000)] 
PR libstdc++/89466 avoid slow xsltproc command in configure

Certain broken versions of xsltproc ignore the --nonet option and will
attempt to fetch the docbook stylesheet from the WWW when it isn't in
the local XML catalog.

This patch checks for the local stylesheet directory first, and doesn't
use xsltproc if no local stylesheets are found. Checking for the local
directory is done using xmlcatalog if available, only checking the
hardcoded list of directories if xmlcatalog fails. The right directory
for Suse is added to the hardcoded list.

This should avoid doing an xsltproc check that would need to download
the stylesheet, so no network connection is made even if a broken
xsltproc is present.

PR libstdc++/89466
* acinclude.m4 (GLIBCXX_CONFIGURE_DOCBOOK): Reorder check for local
stylesheet directories before check for xsltproc. Try to use
xmlcatalog to find local stylesheet directory before trying hardcoded
paths. Add path used by suse to hardcoded paths. Adjust xsltproc
check to look for the same stylesheet as doc/Makefile.am uses. Don't
use xsltproc if xmlcatalog fails to find a local stylesheet.
* configure.ac: Check for xmlcatalog.
* Makefile.in: Regenerate.
* configure: Likewise.
* doc/Makefile.in: Likewise.
* include/Makefile.in: Likewise.
* libsupc++/Makefile.in: Likewise.
* po/Makefile.in: Likewise.
* python/Makefile.in: Likewise.
* src/Makefile.in: Likewise.
* src/c++11/Makefile.in: Likewise.
* src/c++17/Makefile.in: Likewise.
* src/c++98/Makefile.in: Likewise.
* src/filesystem/Makefile.in: Likewise.
* testsuite/Makefile.in: Likewise.

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

5 years agoReplaced spaces with tab in Changelog, committed as obvious
alejandro [Wed, 27 Feb 2019 10:38:25 +0000 (10:38 +0000)] 
Replaced spaces with tab in Changelog, committed as obvious

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

5 years agoAdd myself to write after approval.
alejandro [Wed, 27 Feb 2019 10:23:54 +0000 (10:23 +0000)] 
Add myself to write after approval.

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

5 years ago[doc] Reword description of -Wno-absolute-value
jamborm [Wed, 27 Feb 2019 10:07:01 +0000 (10:07 +0000)] 
[doc] Reword description of -Wno-absolute-value

2019-02-27  Martin Jambor  <mjambor@suse.cz>
    Martin Sebor  <msebor@redhat.com>

* doc/invoke.texi (Warning Options): Reword description of
-Wno-absolute-value.

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

5 years ago/cp
paolo [Wed, 27 Feb 2019 10:02:23 +0000 (10:02 +0000)] 
/cp
2019-02-27  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/89488
* method.c (process_subob_fn): When maybe_instantiate_noexcept
returns false don't call merge_exception_specifiers.

/testsuite
2019-02-27  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/89488
* g++.dg/cpp0x/nsdmi15.C: New.

/cp
2019-02-27  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/88987
* parser.c (cp_parser_noexcept_specification_opt): Return NULL_TREE
for a non-constant parsed expression.

/testsuite
2019-02-27  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/88987
* g++.dg/cpp0x/pr88987.C: New.

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

5 years ago PR tree-optimization/89280
jakub [Wed, 27 Feb 2019 08:41:01 +0000 (08:41 +0000)] 
PR tree-optimization/89280
* tree-cfgcleanup.c (maybe_dead_abnormal_edge_p,
builtin_setjmp_setup_bb): New functions.
(cleanup_control_flow_pre): Ignore maybe_dead_abnormal_edge_p edges.
When visiting __builtin_setjmp_setup block, queue in special
setjmp_vec vector edges from .ABNORMAL_DISPATCHER to corresponding
__builtin_setjmp_receiver.  Remove .ABNORMAL_DISPATCHER basic blocks
from visited after the loop if they don't have any visited successor
blocks.

* gcc.c-torture/compile/pr89280.c: New test.
* gcc.dg/torture/pr57147-2.c: Don't expect a setjmp after noreturn
function.  Skip the test for -O0.

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

5 years ago compiler: check duplicate numeric keys in map literals
ian [Wed, 27 Feb 2019 04:56:12 +0000 (04:56 +0000)] 
compiler: check duplicate numeric keys in map literals

    Updates golang/go#28104

    Reviewed-on: https://go-review.googlesource.com/c/162882

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

5 years ago compiler: check recursive inherited interface aliases
ian [Wed, 27 Feb 2019 01:41:25 +0000 (01:41 +0000)] 
compiler: check recursive inherited interface aliases

    Fixes golang/go#25302.

    Reviewed-on: https://go-review.googlesource.com/c/163298

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

5 years ago cmd/go: preserve CC for TestScript child processes
ian [Wed, 27 Feb 2019 01:11:20 +0000 (01:11 +0000)] 
cmd/go: preserve CC for TestScript child processes

    Reviewed-on: https://go-review.googlesource.com/c/158838

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

5 years agoDaily bump.
gccadmin [Wed, 27 Feb 2019 00:16:42 +0000 (00:16 +0000)] 
Daily bump.

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

5 years ago2018-02-26 Steve Ellcey <sellcey@marvell.com>
sje [Wed, 27 Feb 2019 00:02:53 +0000 (00:02 +0000)] 
2018-02-26  Steve Ellcey  <sellcey@marvell.com>

* gfortran.dg/simd-builtins-1.f90: Update for aarch64*-*-*.
* gfortran.dg/simd-builtins-2.f90: Ditto.
* gfortran.dg/simd-builtins-6.f90: Ditto.
* gfortran.dg/simd-builtins-8.f90: New test.
* gfortran.dg/simd-builtins-8.h: New header file.

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

5 years ago2018-02-26 Steve Ellcey <sellcey@marvell.com>
sje [Wed, 27 Feb 2019 00:00:56 +0000 (00:00 +0000)] 
2018-02-26  Steve Ellcey  <sellcey@marvell.com>

* config/aarch64/aarch64.c (aarch64_get_multilib_abi_name):
New function.
(TARGET_GET_MULTILIB_ABI_NAME): New macro.

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

5 years agoPR libstdc++/89477 constrain deduction guides for maps and sets
redi [Tue, 26 Feb 2019 23:12:44 +0000 (23:12 +0000)] 
PR libstdc++/89477 constrain deduction guides for maps and sets

The Compare, Hash, and Pred template parameters should be constrained in
the C++17 deduction guides for associative and unordered containers.

The deduction guides for stack, queue and priority_queue are already
constrained, but this patch makes them use the _RequireNotAllocator
helper instead of reproducing the logic each time.

PR libstdc++/89477
* include/bits/alloc_traits.h (_RequireNotAllocator): New helper for
container deduction guides.
* include/bits/hashtable.h (_RequireNotAllocatorOrIntegral): Likewise.
* include/bits/stl_map.h (map): Use _RequireNotAllocator to constrain
parameters in deduction guides.
* include/bits/stl_multimap.h (multimap): Likewise.
* include/bits/stl_multiset.h (multiset): Likewise.
* include/bits/stl_queue.h (queue, priority_queue): Likewise.
* include/bits/stl_set.h (set): Likewise.
* include/bits/stl_stack.h (stack): Likewise.
* include/bits/unordered_map.h (unordered_map, unordered_multimap):
use _RequireNotAllocator and _RequireNotAllocatorOrIntegral to
constrain parameters in deduction guides.
* include/bits/unordered_set.h (unordered_set, unordered_multiset):
Likewise.
* testsuite/23_containers/map/cons/deduction.cc: Test additional
deduction cases.
* testsuite/23_containers/multiset/cons/deduction.cc: Likewise.
* testsuite/23_containers/set/cons/deduction.cc: Likewise.
* testsuite/23_containers/unordered_map/cons/deduction.cc: Likewise.
* testsuite/23_containers/unordered_multimap/cons/deduction.cc:
Likewise.
* testsuite/23_containers/unordered_multiset/cons/deduction.cc:
Likewise.
* testsuite/23_containers/unordered_set/cons/deduction.cc: Likewise.

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

5 years ago PR c++/89507
jakub [Tue, 26 Feb 2019 21:27:33 +0000 (21:27 +0000)] 
PR c++/89507
* tree.c (valid_constant_size_p): Deal with size INTEGER_CSTs
with types other than sizetype/ssizetype.

* g++.dg/other/new2.C: New test.

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

5 years ago * config/sparc/sparc-opts.h (enum processor_type): Rename to...
ebotcazou [Tue, 26 Feb 2019 21:08:22 +0000 (21:08 +0000)] 
* config/sparc/sparc-opts.h (enum processor_type): Rename to...
(enum sparc_processor_type): ...this.
(enum sparc_code_model_type): New enumeration type.
(enum sparc_memory_model_type): Tweak comments.
* config/sparc/sparc.opt (mcpu): Adjust to above renaming.
(mtune): Likewise.
(mcmodel): Use sparc_code_model enumeration and variable.
(sparc_code_model): New enumeration.
(mdebug): Add Undocumented marker.
* config/sparc/sparc.h (enum cmodel): Delete.
(sparc_cmodel): Likewise.
(TARGET_CM_MEDLOW): Adjust to above renaming.
(TARGET_CM_MEDMID): Likewise.
(TARGET_CM_MEDANY): Likewise.
(TARGET_CM_EMBMEDANY): Likewise.
* config/sparc/sparc.c (sparc_cmodel): Delete.
(sparc_option_override): Remove string/value mapping support for the
code model.  Move code and memory model support to after the handling
of target flags.  Do private machine setup last.
(sparc_emit_set_symbolic_const64): Use sparc_code_model.
(sparc_legitimize_reload_address): Likewise.
(sparc_output_mi_thunk): Likewise.
* config/sparc/sparc.md (cpu): Adjust comment to above renaming.

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

5 years ago PR tree-optimization/89500
jakub [Tue, 26 Feb 2019 20:36:29 +0000 (20:36 +0000)] 
PR tree-optimization/89500
* tree-ssa-strlen.c (stridx_strlenloc): Adjust comment.
(handle_builtin_strlen): Remove noncst_bound variable.  Always
optimize strnlen (x, 0) to 0.  Optimize strnlen (x, cst) to
cst if the first cst bytes starting at x are known to be non-zero,
even if the string is not zero terminated.  Don't try to modify
*si for strnlen.  Update strlen_to_stridx only for strlen or if
we can prove strnlen returns the same value as strlen would.

* gcc.dg/pr89500.c: New test.
* gcc.dg/Wstringop-overflow-10.c: New test.
* gcc.dg/strlenopt-60.c: New test.

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

5 years agoPR libstdc++/89416 fix alloc insertable trait for clang (again)
redi [Tue, 26 Feb 2019 20:34:46 +0000 (20:34 +0000)] 
PR libstdc++/89416 fix alloc insertable trait for clang (again)

PR libstdc++/89416
* include/bits/alloc_traits.h (__is_alloc_insertable_impl): Change
to class template and partial specialization using void_t.
(__is_copy_insertable, __is_move_insertable): Adjust base class.

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

5 years ago2019-02-26 Harald Anlauf <anlauf@gmx.de>
anlauf [Tue, 26 Feb 2019 20:03:08 +0000 (20:03 +0000)] 
2019-02-26  Harald Anlauf  <anlauf@gmx.de>

PR fortran/89492
* check.c (gfc_calculate_transfer_sizes): Handle cases where
storage size of elements of MOLD is 0.

PR fortran/89492
* gfortran.dg/pr89492.f90: New test.

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

5 years ago2019-02-26 Thomas Koenig <tkoenig@gcc.gnu.org>
tkoenig [Tue, 26 Feb 2019 19:10:00 +0000 (19:10 +0000)] 
2019-02-26  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/89496
* trans-types.c (get_formal_from_actual_arglist): If
the actual arglist has no expression, the corresponding
formal arglist is an alternate return.

2019-02-26  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/89496
* gfortran.dg/altreturn_9_0.f90: New file.
* gfortran.dg/altreturn_9_1.f90: New file.

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

5 years ago * io/transfer.c (transfer_array_inner): Do not
uros [Tue, 26 Feb 2019 18:41:53 +0000 (18:41 +0000)] 
* io/transfer.c (transfer_array_inner): Do not
cast charlen to index_type.

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

5 years agoImprove memory statistics report readability.
marxin [Tue, 26 Feb 2019 17:27:52 +0000 (17:27 +0000)] 
Improve memory statistics report readability.

2019-02-26  Martin Liska  <mliska@suse.cz>

* alloc-pool.h (struct pool_usage): Remove extra
print_dash_line.
* bitmap.h (struct bitmap_usage): Likewise.
* ggc-common.c (struct ggc_usage): Likewise.
* mem-stats.h (struct mem_usage): Likewise.
(mem_alloc_description::dump): Print dash lines
here and repeat header at the end of a table report.
It's then more readable.
* tree-phinodes.c (phinodes_print_statistics): Make
horizontal alignment.
* tree-ssanames.c (ssanames_print_statistics): Likewise.
* vec.c (struct vec_usage): Remove extra print_dash_line.
* vec.h (vec_safe_grow_cleared): Pass PASS_MEM_STAT.
2019-02-26  Martin Liska  <mliska@suse.cz>

* symtab.c (ht_dump_statistics): Make
horizontal alignment for statistics.

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

5 years agoRemove a legacy lto-symtab.c file.
marxin [Tue, 26 Feb 2019 17:27:36 +0000 (17:27 +0000)] 
Remove a legacy lto-symtab.c file.

2019-02-26  Martin Liska  <mliska@suse.cz>

* lto-symtab.c: Remove.

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

5 years ago * doc/extend.texi (__builtin_object_size):
uros [Tue, 26 Feb 2019 17:21:43 +0000 (17:21 +0000)] 
* doc/extend.texi (__builtin_object_size):
Use @pxref instead of @xref inside parenthesis.
(__builtin_has_attribute): Add missing comma after @xref.
(__builtin_object_size): Ditto.
* doc/md.texi (cond_*{mode}): Use @samp instead of @var around op1[i].
* fortran/invoke.texi (-ffpe-trap): Use @var for every item
in the list.

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

5 years ago PR rtl-optimization/87761
law [Tue, 26 Feb 2019 17:08:06 +0000 (17:08 +0000)] 
PR rtl-optimization/87761
* regcprop.c (copyprop_hardreg_forward_1): Use REG_UNUSED notes to
detect obviously dead insns and delete them.

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

5 years ago[libbacktrace] Fix btest-lto for older gcc
vries [Tue, 26 Feb 2019 16:09:40 +0000 (16:09 +0000)] 
[libbacktrace] Fix btest-lto for older gcc

With gcc 4.8.5, btest_lto ends up with a privatized name for the variable with
name 'global':
...
$ nm btest_lto | grep ' d ' | grep global
0000000000617150 d global.2530
...
which makes test5 fail:
...
    test5: unexpected syminfo name got global.2530 expected global
...

Fix this failure by accepting this type of name as a valid name in btest_lto.

2019-02-26  Tom de Vries  <tdevries@suse.de>

* btest.c (test5): Allow global.* as minimal symbol name for global.

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

5 years ago libgo: update to Go 1.12 release
ian [Tue, 26 Feb 2019 15:38:12 +0000 (15:38 +0000)] 
libgo: update to Go 1.12 release

    Reviewed-on: https://go-review.googlesource.com/c/163742

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

5 years ago PR go/86535
ian [Tue, 26 Feb 2019 14:46:56 +0000 (14:46 +0000)] 
PR go/86535
    runtime: always declare nanotime in Go

    For libgo it's always defined in C.

    Updates https://gcc.gnu.org/PR86535

    Reviewed-on: https://go-review.googlesource.com/c/163743

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

5 years ago PR c++/89481
jakub [Tue, 26 Feb 2019 14:37:39 +0000 (14:37 +0000)] 
PR c++/89481
* constexpr.c (cxx_eval_store_expression): When changing active union
member, set no_zero_init.

* g++.dg/cpp1y/constexpr-89481.C: New test.

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

5 years ago2019-02-26 Richard Biener <rguenther@suse.de>
rguenth [Tue, 26 Feb 2019 14:09:19 +0000 (14:09 +0000)] 
2019-02-26  Richard Biener  <rguenther@suse.de>

PR tree-optimization/89505
* tree-ssa-structalias.c (compute_dependence_clique): Make sure
to handle restrict pointed-to vars with multiple subvars
correctly.

* gcc.dg/torture/pr89505.c: New testcase.

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

5 years ago2019-02-26 Richard Biener <rguenther@suse.de>
rguenth [Tue, 26 Feb 2019 11:03:45 +0000 (11:03 +0000)] 
2019-02-26  Richard Biener  <rguenther@suse.de>

PR tree-optimization/89489
* tree-parloops.c (create_loop_fn): Copy over last_clique.

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

5 years ago * gnat.dg/opt77.adb: New test.
ebotcazou [Tue, 26 Feb 2019 10:55:16 +0000 (10:55 +0000)] 
* gnat.dg/opt77.adb: New test.
* gnat.dg/opt77_pkg.ad[sb]: New helper.

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

5 years ago PR fortran/43210
jakub [Tue, 26 Feb 2019 10:36:05 +0000 (10:36 +0000)] 
PR fortran/43210
* trans-array.c (gfc_conv_array_initializer): Use RANGE_EXPR instead
of duplicating the initializer possibly many times.

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

5 years ago PR target/89474
jakub [Tue, 26 Feb 2019 10:08:29 +0000 (10:08 +0000)] 
PR target/89474
* config/i386/i386.c (remove_partial_avx_dependency): Call
df_analyze etc. before creation of the v4sf_const0 pseudo, rather than
after changing possibly many instructions to use that pseudo.  Fix up
insertion of v4sf_const0 setter at the start of bb.

* gcc.target/i386/pr89474.c: New test.

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

5 years ago[libbacktrace] Require dwz for b3test_dwz_buildid
vries [Tue, 26 Feb 2019 07:54:57 +0000 (07:54 +0000)] 
[libbacktrace] Require dwz for b3test_dwz_buildid

If dwz is not available, then the libbacktrace test b3test_dwz_buildid fails
like this:
...
gmake[4]: *** No rule to make target 'b3test_dwz_buildid'
...

Fix this by guarding the test with HAVE_DWZ.

Tested on x86_64 with and without dwz installed.

2019-02-26  Tom de Vries  <tdevries@suse.de>

* Makefile.am (TESTS): Only add b3test_dwz_buildid if HAVE_DWZ.
* Makefile.in: Regenerate.

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

5 years ago2019-02-25 Sandra Loosemore <sandra@codesourcery.com>
sandra [Tue, 26 Feb 2019 02:33:26 +0000 (02:33 +0000)] 
2019-02-25  Sandra Loosemore  <sandra@codesourcery.com>

PR c/80409

gcc/
* doc/extend.texi (Variadic Pointer Args): New section.

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

5 years ago libgo: update to Go1.12rc1
ian [Tue, 26 Feb 2019 01:00:39 +0000 (01:00 +0000)] 
libgo: update to Go1.12rc1

    Reviewed-on: https://go-review.googlesource.com/c/162881

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

5 years agoDaily bump.
gccadmin [Tue, 26 Feb 2019 00:16:21 +0000 (00:16 +0000)] 
Daily bump.

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

5 years ago PR c/89495
jakub [Mon, 25 Feb 2019 23:43:51 +0000 (23:43 +0000)] 
PR c/89495
* c-format.c (maybe_read_dollar_number): Compute nargnum in
HOST_WIDE_INT type to avoid overflows and change overflow_flag
checking.

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

5 years ago PR c/77754
jakub [Mon, 25 Feb 2019 22:58:45 +0000 (22:58 +0000)] 
PR c/77754
* gcc.c-torture/compile/pr77754-1.c: New test.
* gcc.c-torture/compile/pr77754-2.c: New test.
* gcc.c-torture/compile/pr77754-3.c: New test.
* gcc.c-torture/compile/pr77754-4.c: New test.
* gcc.c-torture/compile/pr77754-5.c: New test.
* gcc.c-torture/compile/pr77754-6.c: New test.

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

5 years ago2019-02-25 Sandra Loosemore <sandra@codesourcery.com>
sandra [Mon, 25 Feb 2019 20:38:42 +0000 (20:38 +0000)] 
2019-02-25  Sandra Loosemore  <sandra@codesourcery.com>
    Martin Sebor  <msebor@gmail.com>

gcc/
* c-family/c.opt (Wmissing-attributes): Clean up doc string.
* common.opt (Wattribute-alias): Likewise.
* doc/invoke.texi (Option Summary): List general form of
-Wattribute-alias=.  List positive form of -Wmissing-attributes.
(-Wmissing-attributes): Invert entry, rewrite and correct default.
Add cross-references.
(-Wattribute-alias): Rewrite and correct default.  Mention
considered attributes (same as for -Wmissing-attributes).

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

5 years ago[rs6000] PR89338, PR89339: Fix compat vector intrinsics for BE and 32-bit
pc [Mon, 25 Feb 2019 19:36:05 +0000 (19:36 +0000)] 
[rs6000] PR89338, PR89339: Fix compat vector intrinsics for BE and 32-bit

Test FAILS: sse2-cvtpd2dq-1, sse2-cvtpd2ps, sse2-cvttpd2dq on powerpc64
(big-endian).

_mm_cvtpd_epi32, _mm_cvtpd_ps, _mm_cvttpd_epi32: Type conversion from
vector doubleword type to vector word type leaves the results in even
lanes in big endian mode.

Test FAILS: sse-cvtss2si-1, sse-cvtss2si-2, sse-movmskb-1 on powerpc
(32-bit big-endian).

Incorrect type for interpreting the result from mfvsrd instruction leads
to incorrect results.  Also, mfvsrd instruction only works as expected in
64-bit mode or for 32-bit quantities in 32-bit mode.  A more general,
if slower, solution is needed for 32-bit mode.

2019-02-25  Paul A. Clarke  <pc@us.ibm.com>

[gcc]

* config/rs6000/emmintrin.h (_mm_cvtpd_epi32): Fix big endian.
(_mm_cvtpd_ps): Likewise.
(_mm_cvttpd_epi32): Likewise.

PR target/89338
* config/rs6000/xmmintrin.h (_mm_cvtss_f32):  Fix type mismatch.
(_mm_cvt_ss2si): Fix type mismatch and 32-bit.

PR target/89339
* config/rs6000/xmmintrin.h (_mm_movemask_pi8): Fix 32-bit.

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

5 years ago * fr.po: Update.
jsm28 [Mon, 25 Feb 2019 18:48:48 +0000 (18:48 +0000)] 
* fr.po: Update.

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

5 years agoAArch64: Fix command line options canonicalization version #2. (PR target/88530)
tnfchris [Mon, 25 Feb 2019 17:57:01 +0000 (17:57 +0000)] 
AArch64: Fix command line options canonicalization version #2. (PR target/88530)

Commandline options on AArch64 don't get canonicalized into the smallest
possible set before output to the assembler. This means that overlapping feature
sets are emitted with superfluous parts.

Normally this isn't an issue, but in the case of crypto we have retro-actively
split it into aes and sha2. We need to emit only +crypto to the assembler
so old assemblers continue to work.

Because of how -mcpu=native and -march=native work they end up enabling all
feature bits. Instead we need to get the smallest possible set, which would also
fix the problem with older the assemblers and the retro-active split.

The function that handles this is called quite often.  It is called for any
push/pop options or attribute that changes arch, cpu etc.  In order to not make
this search for the smallest set too expensive we sort the options based on the
number of features (bits) they enable.  This allows us to process the list
linearly instead of quadratically (Once we have enabled a feature, we know that
anything else that enables it can be ignored.  By sorting we'll get the biggest
groups first and thus the smallest combination of commandline flags).

The Option handling structures have been extended to have a boolean to indicate
whether the option is synthetic, with that I mean if the option flag itself
enables a new feature.

e.g. +crypto isn't an actual feature, it just enables other features, but others
like +rdma enable multiple dependent features but is itself also a feature.

There are two ways to solve this.

1) Either have the options that are feature bits also turn themselves on, e.g.
   change rdma to turn on FP, SIMD and RDMA as dependency bits.

2) Make a distinction between these two different type of features and have the
   framework handle it correctly.

Even though it's more code I went for the second approach, as it's the one
that'll be less fragile (people can't forget it) and gives the least surprises.

Effectively this patch changes the following:

The values before the => are the old compiler and after the => the new code.

-march=armv8.2-a+crypto+sha2 => -march=armv8.2-a+crypto
-march=armv8.2-a+sha2+aes => -march=armv8.2-a+crypto

The remaining behaviors stay the same.

gcc/ChangeLog:

PR target/88530
* common/config/aarch64/aarch64-common.c
(struct aarch64_option_extension): Add is_synthetic.
(all_extensions): Use it.
(TARGET_OPTION_INIT_STRUCT): Define hook.
(struct gcc_targetm_common): Moved to end.
(all_extensions_by_on): New.
(opt_ext_cmp, typedef opt_ext): New.
(aarch64_option_init_struct): New.
(aarch64_contains_opt): New.
(aarch64_get_extension_string_for_isa_flags): Output smallest set.
* config/aarch64/aarch64-option-extensions.def
(AARCH64_OPT_EXTENSION): Explicitly include AES and SHA2 in crypto.
(fp, simd, crc, lse, fp16, rcpc, rdma, dotprod, aes, sha2, sha3,
sm4, fp16fml, sve, profile, rng, memtag, sb, ssbs, predres):
Set is_synthetic to false.
(crypto): Set is_synthetic to true.
* config/aarch64/driver-aarch64.c (AARCH64_OPT_EXTENSION): Add
SYNTHETIC.

gcc/testsuite/ChangeLog:

PR target/88530
* gcc.target/aarch64/options_set_1.c: New test.
* gcc.target/aarch64/options_set_2.c: New test.
* gcc.target/aarch64/options_set_3.c: New test.
* gcc.target/aarch64/options_set_4.c: New test.
* gcc.target/aarch64/options_set_5.c: New test.
* gcc.target/aarch64/options_set_6.c: New test.
* gcc.target/aarch64/options_set_7.c: New test.
* gcc.target/aarch64/options_set_8.c: New test.
* gcc.target/aarch64/options_set_9.c: New test.

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

5 years agoArm: Update Armv8.4-a's FP16 FML intrinsics
tnfchris [Mon, 25 Feb 2019 17:48:55 +0000 (17:48 +0000)] 
Arm: Update Armv8.4-a's FP16 FML intrinsics

This patch updates the Armv8.4-a FP16 FML intrinsics's suffixes from u32 to f16
to be more consistent with the naming convention for intrinsics.

The specifications for these intrinsics have not been published yet so we do
not need to maintain the old names.

The patch was created with the following script:

grep -lIE "(vfml[as].+)_u32" -r gcc/ | grep -iEv ".+Changelog.*" \
  | xargs sed -i -E -e "s/(vfml[as].+)_u32/\1_f16/g"

gcc/ChangeLog:

* config/arm/arm_neon.h (vfmlal_low_u32, vfmlsl_low_u32,
vfmlal_high_u32, vfmlsl_high_u32, vfmlalq_low_u32, vfmlslq_low_u32,
vfmlalq_high_u32, vfmlslq_high_u32, vfmlal_lane_low_u32,
vfmlal_lane_high_u32, vfmlalq_laneq_low_u32, vfmlalq_lane_low_u32,
vfmlal_laneq_low_u32, vfmlalq_laneq_high_u32, vfmlalq_lane_high_u32,
vfmlal_laneq_high_u32, vfmlsl_lane_low_u32, vfmlsl_lane_high_u32,
vfmlslq_laneq_low_u32, vfmlslq_lane_low_u32, vfmlsl_laneq_low_u32,
vfmlslq_laneq_high_u32, vfmlslq_lane_high_u32, vfmlsl_laneq_high_u32):
Rename ...
(vfmlal_low_f16, vfmlsl_low_f16, vfmlal_high_f16, vfmlsl_high_f16,
vfmlalq_low_f16, vfmlslq_low_f16, vfmlalq_high_f16, vfmlslq_high_f16,
vfmlal_lane_low_f16, vfmlal_lane_high_f16, vfmlalq_laneq_low_f16,
vfmlalq_lane_low_f16, vfmlal_laneq_low_f16, vfmlalq_laneq_high_f16,
vfmlalq_lane_high_f16, vfmlal_laneq_high_f16, vfmlsl_lane_low_f16,
vfmlsl_lane_high_f16, vfmlslq_laneq_low_f16, vfmlslq_lane_low_f16,
vfmlsl_laneq_low_f16, vfmlslq_laneq_high_f16, vfmlslq_lane_high_f16,
vfmlsl_laneq_high_f16): ... To this.
* config/arm/neon.md: Update comments.

gcc/testsuite/ChangeLog:

* gcc.target/arm/simd/fp16fml_high.c (test_vfmlal_high_u32,
test_vfmlalq_high_u32, test_vfmlsl_high_u32, test_vfmlslq_high_u32):
Rename ....
(test_vfmlal_high_f16, test_vfmlalq_high_f16, test_vfmlsl_high_f16,
test_vfmlslq_high_f16): ... To this.
* gcc.target/arm/simd/fp16fml_lane_high.c (test_vfmlal_lane_high_u32,
tets_vfmlsl_lane_high_u32, test_vfmlal_laneq_high_u32,
test_vfmlsl_laneq_high_u32, test_vfmlalq_lane_high_u32,
test_vfmlslq_lane_high_u32, test_vfmlalq_laneq_high_u32,
test_vfmlslq_laneq_high_u32): Rename ...
(test_vfmlal_lane_high_f16, tets_vfmlsl_lane_high_f16,
test_vfmlal_laneq_high_f16, test_vfmlsl_laneq_high_f16,
test_vfmlalq_lane_high_f16, test_vfmlslq_lane_high_f16,
test_vfmlalq_laneq_high_f16, test_vfmlslq_laneq_high_f16): ... To this.
* gcc.target/arm/simd/fp16fml_lane_low.c (test_vfmlal_lane_low_u32,
test_vfmlsl_lane_low_u32, test_vfmlal_laneq_low_u32,
test_vfmlsl_laneq_low_u32, test_vfmlalq_lane_low_u32,
test_vfmlslq_lane_low_u32, test_vfmlalq_laneq_low_u32,
test_vfmlslq_laneq_low_u32): Rename ...
(test_vfmlal_lane_low_f16, test_vfmlsl_lane_low_f16,
test_vfmlal_laneq_low_f16, test_vfmlsl_laneq_low_f16,
test_vfmlalq_lane_low_f16, test_vfmlslq_lane_low_f16,
test_vfmlalq_laneq_low_f16, test_vfmlslq_laneq_low_f16): ... To this.
* gcc.target/arm/simd/fp16fml_low.c (test_vfmlal_low_u32,
test_vfmlalq_low_u32, test_vfmlsl_low_u32, test_vfmlslq_low_u32):
Rename ...
(test_vfmlal_low_f16, test_vfmlalq_low_f16, test_vfmlsl_low_f16,
test_vfmlslq_low_f16): ... To this.

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

5 years agoAArch64: Update Armv8.4-a's FP16 FML intrinsics
tnfchris [Mon, 25 Feb 2019 17:46:16 +0000 (17:46 +0000)] 
AArch64: Update Armv8.4-a's FP16 FML intrinsics

This patch updates the Armv8.4-a FP16 FML intrinsics's suffixes from u32 to f16
to be more consistent with the naming convention for intrinsics.

The specifications for these intrinsics have not been published yet so we do
not need to maintain the old names.

The patch was created with the following script:

grep -lIE "(vfml[as].+)_u32" -r gcc/ | grep -iEv ".+Changelog.*" \
  | xargs sed -i -E -e "s/(vfml[as].+)_u32/\1_f16/g"

gcc/ChangeLog:

* config/aarch64/arm_neon.h (vfmlal_low_u32, vfmlsl_low_u32,
vfmlalq_low_u32, vfmlslq_low_u32, vfmlal_high_u32, vfmlsl_high_u32,
vfmlalq_high_u32, vfmlslq_high_u32, vfmlal_lane_low_u32,
vfmlsl_lane_low_u32, vfmlal_laneq_low_u32, vfmlsl_laneq_low_u32,
vfmlalq_lane_low_u32, vfmlslq_lane_low_u32, vfmlalq_laneq_low_u32,
vfmlslq_laneq_low_u32, vfmlal_lane_high_u32, vfmlsl_lane_high_u32,
vfmlal_laneq_high_u32, vfmlsl_laneq_high_u32, vfmlalq_lane_high_u32,
vfmlslq_lane_high_u32, vfmlalq_laneq_high_u32, vfmlslq_laneq_high_u32):
Rename ...
(vfmlal_low_f16, vfmlsl_low_f16, vfmlalq_low_f16, vfmlslq_low_f16,
vfmlal_high_f16, vfmlsl_high_f16, vfmlalq_high_f16, vfmlslq_high_f16,
vfmlal_lane_low_f16, vfmlsl_lane_low_f16, vfmlal_laneq_low_f16,
vfmlsl_laneq_low_f16, vfmlalq_lane_low_f16, vfmlslq_lane_low_f16,
vfmlalq_laneq_low_f16, vfmlslq_laneq_low_f16, vfmlal_lane_high_f16,
vfmlsl_lane_high_f16, vfmlal_laneq_high_f16, vfmlsl_laneq_high_f16,
vfmlalq_lane_high_f16, vfmlslq_lane_high_f16, vfmlalq_laneq_high_f16,
vfmlslq_laneq_high_f16): ... To this.

gcc/testsuite/ChangeLog:

* gcc.target/aarch64/fp16_fmul_high.h (test_vfmlal_high_u32,
test_vfmlalq_high_u32, test_vfmlsl_high_u32, test_vfmlslq_high_u32):
Rename ...
(test_vfmlal_high_f16, test_vfmlalq_high_f16, test_vfmlsl_high_f16,
test_vfmlslq_high_f16): ... To this.
* gcc.target/aarch64/fp16_fmul_lane_high.h (test_vfmlal_lane_high_u32,
tets_vfmlsl_lane_high_u32, test_vfmlal_laneq_high_u32,
test_vfmlsl_laneq_high_u32, test_vfmlalq_lane_high_u32,
test_vfmlslq_lane_high_u32, test_vfmlalq_laneq_high_u32,
test_vfmlslq_laneq_high_u32): Rename ...
(test_vfmlal_lane_high_f16, tets_vfmlsl_lane_high_f16,
test_vfmlal_laneq_high_f16, test_vfmlsl_laneq_high_f16,
test_vfmlalq_lane_high_f16, test_vfmlslq_lane_high_f16,
test_vfmlalq_laneq_high_f16, test_vfmlslq_laneq_high_f16): ... To this.
* gcc.target/aarch64/fp16_fmul_lane_low.h (test_vfmlal_lane_low_u32,
test_vfmlsl_lane_low_u32, test_vfmlal_laneq_low_u32,
test_vfmlsl_laneq_low_u32, test_vfmlalq_lane_low_u32,
test_vfmlslq_lane_low_u32, test_vfmlalq_laneq_low_u32,
test_vfmlslq_laneq_low_u32): Rename ...
(test_vfmlal_lane_low_f16, test_vfmlsl_lane_low_f16,
test_vfmlal_laneq_low_f16, test_vfmlsl_laneq_low_f16,
test_vfmlalq_lane_low_f16, test_vfmlslq_lane_low_f16,
test_vfmlalq_laneq_low_f16, test_vfmlslq_laneq_low_f16): ... To this.
* gcc.target/aarch64/fp16_fmul_low.h (test_vfmlal_low_u32,
test_vfmlalq_low_u32, test_vfmlsl_low_u32, test_vfmlslq_low_u32):
Rename ...
(test_vfmlal_low_f16, test_vfmlalq_low_f16, test_vfmlsl_low_f16,
test_vfmlslq_low_f16): ... To This.
* lib/target-supports.exp
(check_effective_target_arm_fp16fml_neon_ok_nocache): Update test.

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

5 years ago2019-02-25 Dominique d'Humieres <dominiq@gcc.gnu.org>
dominiq [Mon, 25 Feb 2019 15:19:45 +0000 (15:19 +0000)] 
2019-02-25  Dominique d'Humieres  <dominiq@gcc.gnu.org>

PR fortran/89282
* gfortran.dg/overload_3.f90: New test.

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

5 years agodf-scan: fix use of mw_order in df_mw_compare (PR 86096)
amonakov [Mon, 25 Feb 2019 15:14:39 +0000 (15:14 +0000)] 
df-scan: fix use of mw_order in df_mw_compare (PR 86096)

PR rtl-optimization/86096
* df-scan.c (df_mw_compare): Do not check mw_reg fields when
comparing mw_order values.

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

5 years ago PR c++/89285
jakub [Mon, 25 Feb 2019 15:01:01 +0000 (15:01 +0000)] 
PR c++/89285
* g++.dg/cpp1y/constexpr-89285-2.C: New test.

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

5 years ago2019-02-25 Dominique d'Humieres <dominiq@gcc.gnu.org>
dominiq [Mon, 25 Feb 2019 10:39:38 +0000 (10:39 +0000)] 
2019-02-25  Dominique d'Humieres  <dominiq@gcc.gnu.org>

PR libfortran/89274
* gfortran.dg/list_directed_large.f90: New test.

2019-02-25  Dominique d'Humieres  <dominiq@gcc.gnu.org>

PR libfortran/89274
* io/write.c (write_integer): Add width for INTEGER(16).

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

5 years ago PR target/89434
jakub [Mon, 25 Feb 2019 10:32:38 +0000 (10:32 +0000)] 
PR target/89434
* config/arm/arm.md (*subsi3_carryin_const): Use
arm_neg_immediate_operand predicate instead of
arm_not_immediate_operand, "L" constraint instead of "K" and
print it using %n2 instead of %B2.
(*subsi3_carryin_const0): New define_insn.
(*subsi3_carryin_compare_const): Use const_int_I_operand predicate
instead of arm_not_operand and "I" constraint instead of "K" and
print it using %n3 instead of %B2.  Instead of using match_dup 2 add
another match_operand and in the condition check that it is negation
of operands[2].
(*subsi3_carryin_compare_const0): New define_ins.
(*subdi_di_zesidi): Adjust to use *subsi3_carryin_const0 instead of
*subsi3_carryin_const.
(*arm_cmpdi_insn): Fix splitting into *subsi3_carryin_compare_const,
split into *subsi3_carryin_compare_const0 if the highpart is zero.

* gcc.c-torture/execute/pr89434.c: New test.

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

5 years ago PR target/89438
jakub [Mon, 25 Feb 2019 09:51:27 +0000 (09:51 +0000)] 
PR target/89438
* config/arm.vfp.md (*negdf2_vfp): Use
gen_int_mode (0x80000000, SImode) instead of GEN_INT (0x80000000).
* config/arm/neon.md (neon_copysignf<mode>): Likewise.

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

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

5 years agoDaily bump.
gccadmin [Mon, 25 Feb 2019 00:16:31 +0000 (00:16 +0000)] 
Daily bump.

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

5 years ago2019-02-24 Paolo Carlini <paolo.carlini@oracle.com>
paolo [Sun, 24 Feb 2019 23:44:11 +0000 (23:44 +0000)] 
2019-02-24  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/84585
* g++.dg/cpp0x/pr84585.C: New.

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

5 years ago2019-02-24 Thomas Koenig <tkoenig@gcc.gnu.org>
tkoenig [Sun, 24 Feb 2019 22:49:47 +0000 (22:49 +0000)] 
2019-02-24  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/89174
* trans-expr.c (gfc_find_and_cut_at_last_class_ref): Add is_mold
to garguments. If we are dealing with a MOLD, call
gfc_expr_to_initialize().
* trans-stmt.c (gfc_trans_allocate): For MOLD, pass is_mold=true
to gfc_find_and_cut_at_last_class_ref.
* trans.h (gfc_find_and_cut_at_last_class_ref): Add optional
argument is_mold with default false.

2019-02-24  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/89174
* gfortran.dg/allocate_with_mold_3.f90: New test.

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

5 years agoi386: Compile PR target/87007 tests with -mfpmath=sse
hjl [Sun, 24 Feb 2019 22:41:55 +0000 (22:41 +0000)] 
i386: Compile PR target/87007 tests with -mfpmath=sse

-mfpmath=sse is needed to enable SSE for FP math in 32-bit.

PR target/87007
* gcc.target/i386/pr87007-1.c: Compile with -mfpmath=sse.
* gcc.target/i386/pr87007-2.c: Likewise.

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

5 years ago2019-02-24 Harald Anlauf <anlauf@gmx.de>
anlauf [Sun, 24 Feb 2019 20:03:28 +0000 (20:03 +0000)] 
2019-02-24  Harald Anlauf  <anlauf@gmx.de>

PR fortran/89266
PR fortran/88326
* target-memory.c (gfc_element_size): Return false if element size
cannot be determined; element size is returned separately.
(gfc_target_expr_size): Return false if expression size cannot be
determined; expression size is returned separately.
* target-memory.h: Adjust prototypes.
* check.c (gfc_calculate_transfer_sizes): Adjust references to
gfc_target_expr_size, gfc_element_size.
* arith.c (hollerith2representation): Likewise.
* class.c (find_intrinsic_vtab): Likewise.
* simplify.c (gfc_simplify_sizeof): Likewise.

PR fortran/89266
PR fortran/88326
* gfortran.dg/pr89266.f90: New test.
* gfortran.dg/pr88326.f90: New test.

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

5 years ago PR rtl-optimization/89445
jakub [Sun, 24 Feb 2019 19:23:51 +0000 (19:23 +0000)] 
PR rtl-optimization/89445
* simplify-rtx.c (simplify_ternary_operation): Don't use
simplify_merge_mask on operands that may trap.
* rtlanal.c (may_trap_p_1): Use FLOAT_MODE_P instead of
SCALAR_FLOAT_MODE_P checks.  For integral division by zero, if
second operand is CONST_VECTOR, check if any element could be zero.
Don't expect traps for VEC_{MERGE,SELECT,CONCAT,DUPLICATE} unless
their operands can trap.

* gcc.target/i386/avx512f-pr89445.c: New test.

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

5 years agoPR libstdc++/89416 fix accessibility of members
redi [Sun, 24 Feb 2019 15:44:18 +0000 (15:44 +0000)] 
PR libstdc++/89416 fix accessibility of members

PR libstdc++/89416
* include/bits/alloc_traits.h (__is_alloc_insertable_impl): Make
copy and move members public.

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

5 years agoDaily bump.
gccadmin [Sun, 24 Feb 2019 00:16:26 +0000 (00:16 +0000)] 
Daily bump.

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

5 years agoImprove error message for bad arguments to script
redi [Sat, 23 Feb 2019 21:19:04 +0000 (21:19 +0000)] 
Improve error message for bad arguments to script

* generate_libstdcxx_web_docs: Improve error output.

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

5 years agoP0340R2 Making std::underlying_type SFINAE-friendly
redi [Sat, 23 Feb 2019 21:19:00 +0000 (21:19 +0000)] 
P0340R2 Making std::underlying_type SFINAE-friendly

* include/std/type_traits (__underlying_type_impl): New helper to
make underlying_type SFINAE-friendly.
(underlying_type): Derive from __underlying_type_impl.
* testsuite/20_util/underlying_type/requirements/typedefs-3.cc: New
test.

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

5 years agogcc/testsuite/ChangeLog:
msebor [Sat, 23 Feb 2019 20:46:04 +0000 (20:46 +0000)] 
gcc/testsuite/ChangeLog:
* gcc.dg/tree-ssa/builtin-sprintf-10.c: Cast remaining
wchar_t to wint_t to avoid a bogus -Wformat warning in
ILP32 (bug 77970).

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

5 years agogcc/ChangeLog:
msebor [Sat, 23 Feb 2019 20:25:57 +0000 (20:25 +0000)] 
gcc/ChangeLog:
* gimple-ssa-sprintf.c (target_strtol): Rename...
(target_strtohwi): ...to this.  Handle values up to HOST_WIDE_INT_MAX.
(parse_directive): Adjust to name change.  Use HOST_WIDE_INT_MAX to
check for range error.

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

5 years agoInclude "../../../libgfortran/ISO_Fortran_binding.h"
hjl [Sat, 23 Feb 2019 19:58:52 +0000 (19:58 +0000)] 
Include "../../../libgfortran/ISO_Fortran_binding.h"

PR testsuite/89476
* gfortran.dg/ISO_Fortran_binding_5.c: Include
"../../../libgfortran/ISO_Fortran_binding.h".
* gfortran.dg/ISO_Fortran_binding_6.c: Likewise.

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

5 years agodriver: Also prune joined switches with negation
hjl [Sat, 23 Feb 2019 19:39:35 +0000 (19:39 +0000)] 
driver: Also prune joined switches with negation

When -march=native is passed to host_detect_local_cpu to the backend,
it overrides all command lines after it.  That means

$ gcc -march=native -march=skylake-avx512

is the treated as

$ gcc -march=skylake-avx512 -march=native

Prune joined switches with Negative and RejectNegative to allow
-march=skylake-avx512 to override previous -march=native on command-line.

gcc/

PR driver/69471
* opts-common.c (prune_options): Also prune joined switches
with Negative and RejectNegative.
* config/i386/i386.opt (march=): Add Negative(march=).
(mtune=): Add Negative(mtune=).
* doc/options.texi: Document Negative used together with Joined
and RejectNegative.

gcc/testsuite/

PR driver/69471
* gcc.dg/pr69471-1.c: New test.
* gcc.dg/pr69471-2.c: Likewise.
* gcc.target/i386/pr69471-3.c: Likewise.

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

5 years ago2019-02-23 Jerry DeLisle <jvdelisle@gcc.gnu.org>
jvdelisle [Sat, 23 Feb 2019 18:07:10 +0000 (18:07 +0000)] 
2019-02-23  Jerry DeLisle <jvdelisle@gcc.gnu.org>

PR fortran/84387
* trans-io.c (transfer_expr): Do not return if there are no
components to the derived type or class.

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

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

5 years ago PR c++/89419
mpolacek [Sat, 23 Feb 2019 14:54:23 +0000 (14:54 +0000)] 
PR c++/89419
* g++.dg/cpp1y/lambda-generic-89419.C: New test.

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

5 years ago PR c++/88294 - ICE with non-constant noexcept-specifier.
mpolacek [Sat, 23 Feb 2019 14:05:31 +0000 (14:05 +0000)] 
PR c++/88294 - ICE with non-constant noexcept-specifier.
* pt.c (maybe_instantiate_noexcept): Set up the list of local
specializations.  Set current_class_{ptr,ref}.

* g++.dg/cpp0x/noexcept34.C: New test.
* g++.dg/cpp0x/noexcept35.C: New test.

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

5 years ago2019-02-23 Paul Thomas <pault@gcc.gnu.org>
pault [Sat, 23 Feb 2019 13:18:47 +0000 (13:18 +0000)] 
2019-02-23  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/88117
* resolve.c (deferred_op_assign): Return if the lhs expression
has the pointer attribute.
* trans-expr.c (gfc_trans_assignment_1): Do not fix the string
length if the lhs expression has the pointer attribute.

2019-02-23  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/88117
* gfortran.dg/deferred_character_32.f90 : New test

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

5 years ago2019-02-23 Paul Thomas <pault@gcc.gnu.org>
pault [Sat, 23 Feb 2019 12:18:44 +0000 (12:18 +0000)] 
2019-02-23  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/89385
PR fortran/89366
* decl.c (gfc_verify_c_interop_param): Restriction on string
length being one is lifted for F2018.
* trans-expr.c (gfc_conv_gfc_desc_to_cfi_desc): For scalar
characters with intent in, make a temporary and copy the result
of the expression evaluation into it.
(gfc_conv_procedure_call): Set a flag for character formal args
having a character length that is not unity. If the procedure
is bind C, call gfc_conv_gfc_desc_to_cfi_desc in this case.
Also, extend bind C calls to unconditionally convert both
pointers and allocatable expressions.

2019-02-23  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/89385
* gfortran.dg/ISO_Fortran_binding_1.f90 : Correct test for
previously incorrect lbound for allocatable expressions. Also
correct stop values to avoid repetition.
* gfortran.dg/ISO_Fortran_binding_5.f90 : New test
* gfortran.dg/ISO_Fortran_binding_5.c : Support previous test.

PR fortran/89366
* gfortran.dg/ISO_Fortran_binding_6.f90 : New test
* gfortran.dg/ISO_Fortran_binding_6.c : Support previous test.
* gfortran.dg/pr32599.f03 : Set standard to F2008.

2019-02-23  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/89385
PR fortran/89366
* runtime/ISO_Fortran_binding.c (cfi_desc_to_gfc_desc) : In the
interchange between character and derived, the character type
was being set incorrectly.
(gfc_desc_to_cfi_desc) : Eliminate the interchange of types in
this function. Do not add the kind and length information to
the type field of structures. Lbounds were incorrectly being
set to zero for allocatable and pointer descriptors. Should
have been non-pointer, non-allocatables that received this
treatment.

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

5 years agoPR libstdc++/89446 fix null pointer dereference in char_traits
redi [Sat, 23 Feb 2019 03:01:59 +0000 (03:01 +0000)] 
PR libstdc++/89446 fix null pointer dereference in char_traits

PR libstdc++/89446
* include/bits/char_traits.h (__constant_char_array): Check index is
in range before dereferencing.
(char_traits<char>::compare, char_traits<char>::find)
(char_traits<char8_t>::compare, char_traits<char8_t>::find): Return
immediately if n is zero.
(char_traits<wchar_t>::compare, char_traits<wchar_t>::find): Likewise.
Remove workarounds for PR 67026.
* testsuite/21_strings/basic_string_view/operators/char/89446.cc:
New test.
* testsuite/21_strings/basic_string_view/operators/wchar_t/89446.cc:
New test.

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

5 years agoCapture source location of dtors (PR c++/89390)
dmalcolm [Sat, 23 Feb 2019 01:19:38 +0000 (01:19 +0000)] 
Capture source location of dtors (PR c++/89390)

gcc/cp/ChangeLog:
PR c++/89390
* parser.c (cp_parser_unqualified_id): Capture and use locations
for destructors.

gcc/testsuite/ChangeLog:
PR c++/89390
* g++.dg/diagnostic/pr89390.C: Update expected location of error,
renaming to a multicharacter name, so that start != finish.  Add
tests for dtor locations.

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

5 years agoDaily bump.
gccadmin [Sat, 23 Feb 2019 00:16:28 +0000 (00:16 +0000)] 
Daily bump.

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

5 years ago PR middle-end/88074
jakub [Sat, 23 Feb 2019 00:14:52 +0000 (00:14 +0000)] 
PR middle-end/88074
* simplify.c (norm2_do_sqrt, gfc_simplify_norm2): Use
mpfr_number_p && !mpfr_zero_p instead of mpfr_regular_p.
(norm2_add_squared): Likewise.  Use mp_exp_t rather than mpfr_exp_t.

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

5 years ago2019-02-22 Paolo Carlini <paolo.carlini@oracle.com>
paolo [Fri, 22 Feb 2019 23:16:14 +0000 (23:16 +0000)] 
2019-02-22  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/84676
* g++.dg/cpp0x/pr84676.C: New.

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

5 years agogcc/testsuite/ChangeLog:
msebor [Fri, 22 Feb 2019 23:08:23 +0000 (23:08 +0000)] 
gcc/testsuite/ChangeLog:

* gcc.dg/tree-ssa/builtin-sprintf-10.c: Cast wchar_t to wint_t
to avoid a bogus -Wformat warning in ILP32 (bug 77970).

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

5 years ago * config/abi/post/sparc64-linux-gnu/baseline_symbols.txt: Adjust.
ebotcazou [Fri, 22 Feb 2019 21:25:59 +0000 (21:25 +0000)] 
* config/abi/post/sparc64-linux-gnu/baseline_symbols.txt: Adjust.
* config/abi/post/sparc64-linux-gnu/32/baseline_symbols.txt: Likewise.

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

5 years ago2019-02-22 Harald Anlauf <anlauf@gmx.de>
anlauf [Fri, 22 Feb 2019 20:35:38 +0000 (20:35 +0000)] 
2019-02-22  Harald Anlauf  <anlauf@gmx.de>

PR fortran/83057
* io.c (gfc_match_open): Fix logic in checks of OPEN statement
when NEWUNIT= is specified.

PR fortran/83057
* gfortran.dg/newunit_6.f90: New test.

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

5 years ago2019-02-22 Steven G. Kargl <kargl@gcc.gnu.org>
kargl [Fri, 22 Feb 2019 20:27:57 +0000 (20:27 +0000)] 
2019-02-22  Steven G. Kargl  <kargl@gcc.gnu.org>

PR fortran/89431
* gfortran.texi: Fix documentation to match the implementation.

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

5 years ago PR c++/89420 - ICE with CAST_EXPR in explicit-specifier.
mpolacek [Fri, 22 Feb 2019 19:24:37 +0000 (19:24 +0000)] 
PR c++/89420 - ICE with CAST_EXPR in explicit-specifier.
* decl.c (build_explicit_specifier): Don't check
processing_template_decl.  Call instantiation_dependent_expression_p
instead of value_dependent_expression_p.  Call
instantiate_non_dependent_expr_sfinae before
build_converted_constant_expr instead of calling
instantiate_non_dependent_expr after it.  Add
processing_template_decl_sentinel.

* g++.dg/cpp2a/explicit14.C: New test.

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

5 years ago PR libstdc++/89402
jakub [Fri, 22 Feb 2019 19:10:47 +0000 (19:10 +0000)] 
PR libstdc++/89402
* src/c++98/compatibility-ldbl.cc (_ZNKSt4hashIeEclEe): Change return
type to std::size_t and argument to type to long double.

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

5 years agogcc/ChangeLog:
msebor [Fri, 22 Feb 2019 18:38:36 +0000 (18:38 +0000)] 
gcc/ChangeLog:

* doc/extend.texi (Other Builtins): Add
__builtin_is_constant_evaluated.

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

5 years ago2019-02-22 Richard Biener <rguenther@suse.de>
rguenth [Fri, 22 Feb 2019 17:56:59 +0000 (17:56 +0000)] 
2019-02-22  Richard Biener  <rguenther@suse.de>

PR tree-optimization/87609
* tree-cfg.c (gimple_duplicate_bb): Only remap inlined cliques.

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

5 years agoPR tree-optimization/88993 - GCC 9 -Wformat-overflow=2 should reflect real libc limits
msebor [Fri, 22 Feb 2019 17:38:11 +0000 (17:38 +0000)] 
PR tree-optimization/88993 - GCC 9 -Wformat-overflow=2 should reflect real libc limits
PR tree-optimization/88835 - overly aggressive -Werror=format-overflow for printf

gcc/ChangeLog:

PR tree-optimization/88993
PR tree-optimization/88853
* gimple-ssa-sprintf.c (sprintf_dom_walker::call_info::is_file_func):
New helper.
(sprintf_dom_walker::call_info::is_string_func): New helper.
(format_directive): Only issue "may exceed" 4095/INT_MAX warnings
for formatted string functions.
(sprintf_dom_walker::handle_gimple_call): Fix a typo in a comment.

gcc/testsuite/ChangeLog:

PR tree-optimization/88993
PR tree-optimization/88853
* gcc.dg/tree-ssa/builtin-fprintf-warn-2.c: New test.
* gcc.dg/tree-ssa/builtin-printf-warn-2.c: New test.
* gcc.dg/tree-ssa/builtin-snprintf-warn-3.c: Adjust.
* gcc.dg/tree-ssa/builtin-sprintf-warn-18.c: Same.

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

5 years ago PR rtl-optimization/87761
law [Fri, 22 Feb 2019 16:38:43 +0000 (16:38 +0000)] 
PR rtl-optimization/87761
* config/mips/mips.md: Add new combiner pattern to recognize
a bitfield extraction using (ashiftrt (truncate (ashift (...)))).

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