From patchwork Wed Sep 8 22:40:58 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Burnus X-Patchwork-Id: 64235 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id E4ECBB70D8 for ; Thu, 9 Sep 2010 08:41:10 +1000 (EST) Received: (qmail 12823 invoked by alias); 8 Sep 2010 22:41:07 -0000 Received: (qmail 12810 invoked by uid 22791); 8 Sep 2010 22:41:07 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE X-Spam-Check-By: sourceware.org Received: from mx01.qsc.de (HELO mx01.qsc.de) (213.148.129.14) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 08 Sep 2010 22:41:01 +0000 Received: from [192.168.178.22] (port-92-204-54-216.dynamic.qsc.de [92.204.54.216]) by mx01.qsc.de (Postfix) with ESMTP id 02CA83DB45; Thu, 9 Sep 2010 00:40:57 +0200 (CEST) Message-ID: <4C8810FA.3010000@net-b.de> Date: Thu, 09 Sep 2010 00:40:58 +0200 From: Tobias Burnus User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.7) Gecko/20100714 SUSE/3.1.1 Thunderbird/3.1.1 MIME-Version: 1.0 To: gcc patches , gfortran Subject: [Patch,wwwdata] Update Fortran part of gcc-4.6/changes.html Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org I have committed the attached patch, but if you have suggestions ... Current version: http://gcc.gnu.org/gcc-4.6/changes.html#Fortran Tobias Index: changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/changes.html,v retrieving revision 1.37 diff -u -r1.37 changes.html --- changes.html 1 Sep 2010 12:10:58 -0000 1.37 +++ changes.html 8 Sep 2010 22:38:21 -0000 @@ -183,8 +183,19 @@
  • Support for ALLOCATE with MOLD.
  • Support for the STORAGE_SIZE intrinsic inquiry function.
  • -
  • Support of the NORM2, PARITY, - POPCNT, and POPPAR intrinsic functions.
  • +
  • Support of the NORM2, PARITY + intrinsic functions.
  • +
  • The following bit intrinsics were added: POPCNT, + and POPPAR for counting the number of one bits and + returning the parity; BGE, BGT, + BLE, and BLT for bitwise comparisons; + DSHIFTL and DSHIFTR for combined left + and right shifts, MASKL and MASKR for + simple left and right justified masks, MERGE_BITS + for a bitwise merge using a mask, SHIFTA, + SHIFTL and SHIFTR for shift operations, + and the transformational bit intrinsics IALL, + IANY and IPARITY.
  • Support of the EXECUTE_COMMAND_LINE intrinsic subroutine.
  • Support for the IMPURE attribute for procedures, @@ -200,6 +211,11 @@
  • Pointers including procedure pointers and those in a derived type (pointer components) can now be initialized by a target instead of only by NULL.
  • +
  • The EXIT statement (with construct-name) can be + now be used to leave not only the DO but also the + ASSOCIATE, BLOCK, IF, + SELECT CASE and SELECT TYPE constructs.
  • +
  • Internal procedures can now be used as actual argument.
  • Minor changes: obsolesce diagnostics for ENTRY was added for -std=f2008; a line may start with a semicolon;