From patchwork Mon Nov 19 21:38:50 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pawel Wodkowski X-Patchwork-Id: 30210 Received: (qmail 110862 invoked by alias); 19 Nov 2018 21:40:26 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 110716 invoked by uid 89); 19 Nov 2018 21:40:25 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_FAIL autolearn=ham version=3.3.2 spammy= X-HELO: mga07.intel.com Received: from mga07.intel.com (HELO mga07.intel.com) (134.134.136.100) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 19 Nov 2018 21:40:24 +0000 Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Nov 2018 13:40:23 -0800 Received: from kraken.imu.intel.com ([10.217.246.153]) by orsmga004.jf.intel.com with ESMTP; 19 Nov 2018 13:40:21 -0800 From: Pawel Wodkowski To: gdb-patches@sourceware.org, murbanski@pl.sii.eu, sbasierski@pl.sii.eu Cc: tim.wiederhake@intel.com, dragos.carciumaru@intel.com, Bernhard Heckel Subject: [PATCH v2 7/7] Fortran: Document scope operator. Date: Mon, 19 Nov 2018 22:38:50 +0100 Message-Id: <1542663530-140490-7-git-send-email-pwodkowski@pl.sii.eu> In-Reply-To: <1542663530-140490-1-git-send-email-pwodkowski@pl.sii.eu> References: <1542663530-140490-1-git-send-email-pwodkowski@pl.sii.eu> From: Bernhard Heckel Document scope operator in GDB manual. 2016-08-10 Bernhard Heckel gdb/Changelog: * doc/gdb.texinfo (Fortran Operators): Describe scope operator. Changes from V1 to V2: refactored entry in texinfo file, updated commit message. --- gdb/doc/gdb.texinfo | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 944a2c438373..5eb3d6abfee5 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -15882,6 +15882,10 @@ The access component operator. Normally used to access elements in derived types. Also suitable for unions. As unions aren't part of regular Fortran, this can only happen when accessing a register that uses a gdbarch-defined union type. +@item :: +The scope operator. Normally used to access variables in modules or +to set breakpoints on subroutines nested in modules or in other +subroutines (internal subroutines). @end table @node Fortran Defaults