From patchwork Sun Nov 20 15:06:18 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ambrogino Modigliani X-Patchwork-Id: 17610 Received: (qmail 81887 invoked by alias); 20 Nov 2016 15:07:16 -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 77272 invoked by uid 89); 20 Nov 2016 15:07:06 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, RCVD_IN_SORBS_SPAM, SPF_PASS autolearn=no version=3.3.2 spammy=346, 7 X-HELO: mail-wm0-f67.google.com Received: from mail-wm0-f67.google.com (HELO mail-wm0-f67.google.com) (74.125.82.67) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 20 Nov 2016 15:07:04 +0000 Received: by mail-wm0-f67.google.com with SMTP id u144so19770563wmu.0 for ; Sun, 20 Nov 2016 07:07:04 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=ZLUHSkxTlskTvMviUYAuZ8KkBwwVe6uRrEM+VPFwXMo=; b=DKJGStdZwMqcVFxsRIB9FGxcjFooJrVfefx5vo5nhA+jUJBAekf80cb3PCPhfAmnKd lKeCThGPcsPcPGIN4+0dsZ+Y90JswykDKKOaqeXM/SdvAYfQX1nJgzVeRtX5ScnaxCBC MNcIY0Ps8AGGthHjTbbbjg9bMUiry+NgbeCEcwFT/Gh1xgjEjGla7KN/5UqL6RgNXXUo eXFD92+z7yQLkUdUfsyRTquSeSDMQnU4tOEPySX9vFuGx1QptX1x6+aX+cDYi5W60drr D7sqCNQ6vB6+wPrKlXiWJFQRRiXlDH/9Ixt6eh/VZl4Ma+/pdN1l/7571DR3Fz55nWf8 WtwQ== X-Gm-Message-State: AKaTC03g2wEunkT1u3M3ICBtSKR2G1yNHxHeuWXOGToL0BtP6XBSM77QroM3iPIAxDWIPA== X-Received: by 10.28.128.211 with SMTP id b202mr9808982wmd.7.1479654422551; Sun, 20 Nov 2016 07:07:02 -0800 (PST) Received: from localhost.localdomain ([95.180.71.38]) by smtp.googlemail.com with ESMTPSA id v2sm19793444wja.41.2016.11.20.07.07.01 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 20 Nov 2016 07:07:01 -0800 (PST) From: Ambrogino Modigliani X-Google-Original-From: Ambrogino Modigliani To: gdb-patches@sourceware.org, pedro_alves@portugalmail.pt Subject: [PATCH 17/20] Fix spelling mistakes in comments in .opc files Date: Sun, 20 Nov 2016 16:06:18 +0100 Message-Id: <1479654381-20698-18-git-send-email-ambrogino.modigliani@mail.com> In-Reply-To: <1479654381-20698-1-git-send-email-ambrogino.modigliani@mail.com> References: <1479654381-20698-1-git-send-email-ambrogino.modigliani@mail.com> cpu/ChangeLog: * cpu/frv.opc: Fix spelling in comments. * cpu/mep.opc: Fix spelling in comments. opcodes/ChangeLog: * opcodes/msp430-decode.opc: Fix spelling in comments. --- cpu/frv.opc | 2 +- cpu/mep.opc | 4 ++-- opcodes/msp430-decode.opc | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cpu/frv.opc b/cpu/frv.opc index 869155d..2c23b07 100644 --- a/cpu/frv.opc +++ b/cpu/frv.opc @@ -488,7 +488,7 @@ match_vliw (VLIW_COMBO *vliw1, VLIW_COMBO *vliw2, int vliw_size) return TRUE; } -/* Find the next vliw vliw in the table that can accomodate the new insn. +/* Find the next vliw vliw in the table that can accommodate the new insn. If one is found then return it. Otherwise return NULL. */ static VLIW_COMBO * diff --git a/cpu/mep.opc b/cpu/mep.opc index 7ed3ea8..2b59392 100644 --- a/cpu/mep.opc +++ b/cpu/mep.opc @@ -1163,7 +1163,7 @@ mep_examine_vliw32_insns (CGEN_CPU_DESC cd, bfd_vma pc, disassemble_info *info) cop1buflength = 2; } - /* Now we have the distrubution set. Print them out. */ + /* Now we have the distribution set. Print them out. */ status = mep_print_vliw_insns (cd, pc, info, buf, corebuflength, cop1buflength, cop2buflength); @@ -1252,7 +1252,7 @@ mep_examine_vliw64_insns (CGEN_CPU_DESC cd, bfd_vma pc, disassemble_info *info) cop1buflength = 6; } - /* Now we have the distrubution set. Print them out. */ + /* Now we have the distribution set. Print them out. */ status = mep_print_vliw_insns (cd, pc, info, buf, corebuflength, cop1buflength, cop2buflength); diff --git a/opcodes/msp430-decode.opc b/opcodes/msp430-decode.opc index 9428467..9185637 100644 --- a/opcodes/msp430-decode.opc +++ b/opcodes/msp430-decode.opc @@ -346,7 +346,7 @@ msp430_decode_opcode (unsigned long pc, post_extension_word: ; - /* 430X extention word. */ + /* 430X extension word. */ /** 0001 1srx t l 00 dsxt 430x */ al_bit = l;