From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from kwanyin.sergiodj.net (kwanyin.sergiodj.net [158.69.185.54]) by sourceware.org (Postfix) with ESMTPS id 5DCBA394BE2C for ; Wed, 20 May 2020 09:34:16 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 5DCBA394BE2C Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb] Fix typo in comment of DYN_PROP_ASSOCIATED From: gdb-buildbot@sergiodj.net To: gdb-testers@sourceware.org Message-Id: Date: Wed, 20 May 2020 05:34:14 -0400 X-Spam-Status: No, score=-7.8 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: gdb-testers@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-testers mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 May 2020 09:34:17 -0000 *** TEST RESULTS FOR COMMIT a51119cde483f4e9eeaa4450d3f2a7b0e52fea3d *** commit a51119cde483f4e9eeaa4450d3f2a7b0e52fea3d Author: Hannes Domani AuthorDate: Fri May 1 14:50:08 2020 +0200 Commit: Hannes Domani CommitDate: Sat May 2 12:55:51 2020 +0200 Fix typo in comment of DYN_PROP_ASSOCIATED gdb/ChangeLog: 2020-05-02 Hannes Domani * gdbtypes.h (enum dynamic_prop_node_kind): Fix typo. diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3cfd738759..b5f664c2bc 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-05-02 Hannes Domani + + * gdbtypes.h (enum dynamic_prop_node_kind): Fix typo. + 2020-05-01 Philippe Waroquiers * gdb-gdb.gdb-in: Remove breakpoint on disappeared function diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h index 87b1bca3a2..8899fb1511 100644 --- a/gdb/gdbtypes.h +++ b/gdb/gdbtypes.h @@ -547,7 +547,7 @@ enum dynamic_prop_node_kind indicates that the object of the type can be allocated/deallocated. */ DYN_PROP_ALLOCATED, - /* A property representing DW_AT_allocated. The presence of this attribute + /* A property representing DW_AT_associated. The presence of this attribute indicated that the object of the type can be associated. */ DYN_PROP_ASSOCIATED,