From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 80665 invoked by alias); 20 Nov 2016 17:41:16 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 80609 invoked by uid 89); 20 Nov 2016 17:41:16 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.3 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= 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 17:41:13 +0000 Received: by mail-wm0-f67.google.com with SMTP id g23so20690231wme.1 for ; Sun, 20 Nov 2016 09:41:13 -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=dL6UM6MJX4DAJd6aAQLT2TluG3S+NqrMVgGYqg2Y/Ss=; b=b+oBmFJi2ZGtTBBjNHsaP19roSY+nXMqZ30n2FDerMpgH7kYir3JV67eD2NN0Sv2Cc c1LAlLtKqUK71aDgxlzfoR7RLv0eND/GVblwFuSb5nV2+++GCwflJUVyTcFnhXen3s0J pJLgmQiRRE9E0olSyPRDu76v9clRNN2LnJU6NrqTSyP2Wpg5C6lXhJLruPSFgbWjQi6p /jkQW3MXW6nTz4UDa8HT5/OE9PZkwZZi/8QkPnIqrntkekYASB6UYzouEGsp9ANf8qgO wOgsdd84tgjrY1NoI9K2MDz6EvSyYoVcSGEw31I6LTRX3y/Bnh52qfXHvF6XTgoYNyqJ nflQ== X-Gm-Message-State: AKaTC02C5KOOkASyAw9N0KKUzGJKzLEVZlrtZfAGKdr4JIVbHHt1IzbHuxr6Jwo9BLXWwg== X-Received: by 10.195.30.43 with SMTP id kb11mr6069394wjd.131.1479663671331; Sun, 20 Nov 2016 09:41:11 -0800 (PST) Received: from localhost.localdomain ([95.180.71.38]) by smtp.googlemail.com with ESMTPSA id j1sm20408211wjm.26.2016.11.20.09.41.10 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 20 Nov 2016 09:41:10 -0800 (PST) From: Ambrogino Modigliani X-Google-Original-From: Ambrogino Modigliani To: gdb-patches@sourceware.org, pedro_alves@portugalmail.pt, ambrogino.modigliani@gmail.com, ambrogino.modigliani@mail.com Subject: [PATCH 14/23] Fix spelling mistakes in comments in .em files Date: Sun, 20 Nov 2016 17:41:00 -0000 Message-Id: <1479663498-30295-15-git-send-email-ambrogino.modigliani@mail.com> In-Reply-To: <1479663498-30295-1-git-send-email-ambrogino.modigliani@mail.com> References: <1479663498-30295-1-git-send-email-ambrogino.modigliani@mail.com> X-SW-Source: 2016-11/txt/msg00572.txt.bz2 ld/ChangeLog: * ld/emultempl/avrelf.em: Fix spelling in comments. * ld/emultempl/elf32.em: Fix spelling in comments. * ld/emultempl/pe.em: Fix spelling in comments. * ld/emultempl/pep.em: Fix spelling in comments. * ld/emultempl/spuelf.em: Fix spelling in comments. --- ld/emultempl/avrelf.em | 2 +- ld/emultempl/elf32.em | 4 ++-- ld/emultempl/pe.em | 2 +- ld/emultempl/pep.em | 2 +- ld/emultempl/spuelf.em | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ld/emultempl/avrelf.em b/ld/emultempl/avrelf.em index 4710b6e..f9f0111 100644 --- a/ld/emultempl/avrelf.em +++ b/ld/emultempl/avrelf.em @@ -36,7 +36,7 @@ fragment <type = bfd_link_hash_defweak; /* We replace original name with __imp_ prefixed, this 1) may trash memory 2) leads to duplicate symbol generation. - Still, IMHO it's better than having name poluted. */ + Still, IMHO it's better than having name polluted. */ undef->root.string = sym->root.string; undef->u.def.value = sym->u.def.value; undef->u.def.section = sym->u.def.section; diff --git a/ld/emultempl/pep.em b/ld/emultempl/pep.em index 60deeed..1312bec 100644 --- a/ld/emultempl/pep.em +++ b/ld/emultempl/pep.em @@ -1197,7 +1197,7 @@ pep_find_data_imports (void) undef->type = bfd_link_hash_defweak; /* We replace original name with __imp_ prefixed, this 1) may trash memory 2) leads to duplicate symbol generation. - Still, IMHO it's better than having name poluted. */ + Still, IMHO it's better than having name polluted. */ undef->root.string = sym->root.string; undef->u.def.value = sym->u.def.value; undef->u.def.section = sym->u.def.section; diff --git a/ld/emultempl/spuelf.em b/ld/emultempl/spuelf.em index a94e1df..e289e45 100644 --- a/ld/emultempl/spuelf.em +++ b/ld/emultempl/spuelf.em @@ -719,7 +719,7 @@ PARSE_AND_LIST_ARGS_CASES=' auto_overlay_file = optarg; break; } - /* Fall thru */ + /* Fall through */ case OPTION_SPU_AUTO_RELINK: params.auto_overlay |= 2; -- 2.7.4