From patchwork Thu May 7 14:04:22 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Iain Buclaw X-Patchwork-Id: 1285302 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=2620:52:3:1:0:246e:9693:128c; helo=sourceware.org; envelope-from=gcc-patches-bounces@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=gcc.gnu.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.a=rsa-sha256 header.s=default header.b=rOI1euZC; dkim-atps=neutral Received: from sourceware.org (server2.sourceware.org [IPv6:2620:52:3:1:0:246e:9693:128c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49HwFX0qtmz9sSg for ; Fri, 8 May 2020 00:04:46 +1000 (AEST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id E06F2395A839; Thu, 7 May 2020 14:04:39 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E06F2395A839 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1588860279; bh=PIf4wvAuu+GSfMPJt03qdahjPq6x4uRm0z8Z9ct44wA=; h=Subject:To:References:Date:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=rOI1euZCQtkJFn2SwRYULlE2BLrK5rvrHWrny1v/jpfYDG6XrY9faopAOEr62nSBz XniqhgqgqnbgV0e1fiykpWdqs3nQYx5upBSr+RPk3oYUqnPQgVqsPEgwNcpvyJt06y qcHMTFvcPMZjtQzjT4t49rVvBssemv8VVVkWRYYU= X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from mout-p-102.mailbox.org (mout-p-102.mailbox.org [IPv6:2001:67c:2050::465:102]) by sourceware.org (Postfix) with ESMTPS id A2E1A386F460 for ; Thu, 7 May 2020 14:04:27 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org A2E1A386F460 Received: from smtp2.mailbox.org (smtp2.mailbox.org [IPv6:2001:67c:2050:105:465:1:2:0]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by mout-p-102.mailbox.org (Postfix) with ESMTPS id 49HwF61DXFzKmhD; Thu, 7 May 2020 16:04:26 +0200 (CEST) X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from smtp2.mailbox.org ([80.241.60.241]) by spamfilter04.heinlein-hosting.de (spamfilter04.heinlein-hosting.de [80.241.56.122]) (amavisd-new, port 10030) with ESMTP id O95Otxb4DxH0; Thu, 7 May 2020 16:04:22 +0200 (CEST) Subject: Ping: [PATCH] wwwdocs: Add D front-end section for GCC 10 changes To: gcc-patches@gcc.gnu.org References: <20200427231219.18652-1-ibuclaw@gdcproject.org> Message-ID: Date: Thu, 7 May 2020 16:04:22 +0200 MIME-Version: 1.0 In-Reply-To: Content-Language: en-GB X-Rspamd-Queue-Id: 25E461693 X-Rspamd-Score: -3.71 / 15.00 / 15.00 X-Spam-Status: No, score=-20.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Iain Buclaw via Gcc-patches From: Iain Buclaw Reply-To: Iain Buclaw Errors-To: gcc-patches-bounces@gcc.gnu.org Sender: "Gcc-patches" Hi, Updated the patch to include missed changes, and slighted reworded some entries to make them clearer/read easier. OK to commit? Iain. --- htdocs/gcc-10/changes.html | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/htdocs/gcc-10/changes.html b/htdocs/gcc-10/changes.html index 41c2dc0d..f10cfd56 100644 --- a/htdocs/gcc-10/changes.html +++ b/htdocs/gcc-10/changes.html @@ -432,6 +432,41 @@ a work-in-progress.

+

D

+
    +
  • Support for static foreach has been implemented.
  • +
  • Aliases can now be created directly from any __trait that + return symbols or tuples. Previously, an AliasSeq was + necessary in order to alias their return. +
  • +
  • It is now possible to detect the language ABI specified for a struct, + class, or interface using __traits(getLinkage, ...) +
  • Support for core.math.toPrec intrinsics have been added. + These intrinsics guarantee the rounding to specific floating-point + precisions at required points in the code. +
  • +
  • Support for pragma(inline) has been implemented. Previously + the pragma was recognized, but had no effect on the compilation. +
  • +
  • Optional parentheses in asm operands are now deprecated and + will be removed in a future release. +
  • +
  • All content imported files are now included in the make dependency list + when compiling with -M. +
  • +
  • Compiler recognized attributes provided by the gcc.attribute + module will now take effect when applied to function prototypes as well + as when applied to full function declarations. +
  • +
  • Added --enable-libphobos-checking configure option to + control whether run-time checks are compiled into the D runtime library. +
  • +
  • Added --with-libphobos-druntime-only configure option to + allow specifying whether to build only the core D runtime library, or + both the core and standard libraries into libphobos. +
  • +
+

Fortran

  • use_device_addr of version 5.0 of the