From patchwork Tue Feb 25 15:02:11 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luis Machado X-Patchwork-Id: 38306 Received: (qmail 50816 invoked by alias); 25 Feb 2020 15:02:33 -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 50808 invoked by uid 89); 25 Feb 2020 15:02:33 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-20.7 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mail-qt1-f171.google.com Received: from mail-qt1-f171.google.com (HELO mail-qt1-f171.google.com) (209.85.160.171) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 25 Feb 2020 15:02:23 +0000 Received: by mail-qt1-f171.google.com with SMTP id j34so236645qtk.4 for ; Tue, 25 Feb 2020 07:02:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:subject:date:message-id; bh=xkkcxEpuY72WhwqNRqzDZowx9z+fQwvSe5PY1DyV6EM=; b=jYnfqqw34fH9a8wtsmz9fB6rNgiX2dHQfjXGmGx4UyqzKGLdAIoRhshZmbrmRli4v/ VAt4d353MAoxpI1tHUeUE5g2Eg35odo5cE8v8qBLZp0xaTyH/E6j5V4kALodbhVx09cT hImgjQPXexrP2r2l67LSAHexg8ObqPHhpmcCMPNLaFBT/93bXqmuPS8GzmxDqGa9L+Y1 nAd1OPc8wk5/V3vqaF1g9IBh+lcEa5WW23mbLMXP07G3SEl/jWEbuBZ99SH7sF18J4ST 55rp4waL/Pk8jyHJG+ey0wzbLn1ZUcfbptbMcQeZkbfoqlWnVuddzRb7ezkOMZ03YNRc 9sfA== Return-Path: Received: from localhost.localdomain ([191.34.86.53]) by smtp.gmail.com with ESMTPSA id r37sm7564437qtj.44.2020.02.25.07.02.16 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 25 Feb 2020 07:02:17 -0800 (PST) From: Luis Machado To: gdb-patches@sourceware.org Subject: [pushed] [AArch64] Fix typo in comment Date: Tue, 25 Feb 2020 12:02:11 -0300 Message-Id: <20200225150211.9266-1-luis.machado@linaro.org> X-IsSubscribed: yes Just a trivial typo fix in a comment. gdb/ChangeLog 2020-02-25 Luis Machado * aarch64-tdep.c (aarch64_vnv_type): Fix comment typo. --- gdb/ChangeLog | 4 ++++ gdb/aarch64-tdep.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 01cd38d01a..879a17a653 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-02-25 Luis Machado + + * aarch64-tdep.c (aarch64_vnv_type): Fix comment typo. + 2020-02-25 Simon Marchi * loc.h (dwarf2_get_die_type): Move to... diff --git a/gdb/aarch64-tdep.c b/gdb/aarch64-tdep.c index 31b90c89c7..216e85d448 100644 --- a/gdb/aarch64-tdep.c +++ b/gdb/aarch64-tdep.c @@ -1967,7 +1967,7 @@ aarch64_vnv_type (struct gdbarch *gdbarch) if (tdep->vnv_type == NULL) { - /* The other AArch64 psuedo registers (Q,D,H,S,B) refer to a single value + /* The other AArch64 pseudo registers (Q,D,H,S,B) refer to a single value slice from the non-pseudo vector registers. However NEON V registers are always vector registers, and need constructing as such. */ const struct builtin_type *bt = builtin_type (gdbarch);