From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 50233 invoked by alias); 9 Dec 2019 11:47:49 -0000 Mailing-List: contact dwz-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Post: List-Help: List-Subscribe: Sender: dwz-owner@sourceware.org Received: (qmail 50223 invoked by uid 89); 9 Dec 2019 11:47:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.100.3 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.2 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 spammy= X-Spam-Status: No, score=-25.2 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on sourceware.org X-Spam-Level: X-HELO: mx1.suse.de X-Virus-Scanned: by amavisd-new at test-mx.suse.de Date: Tue, 01 Jan 2019 00:00:00 -0000 From: Tom de Vries To: dwz@sourceware.org, jakub@redhat.com Subject: [committed] Add --devel-verify-dups (2) Message-ID: <20191209114743.GA20222@delia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-SW-Source: 2019-q4/txt/msg00125.txt.bz2 Hi, In commit 1bd7570 "Add --devel-verify-dups" I forgot to add in the actual option handling. Add the missing part. Committed to trunk. Thanks, - Tom Add --devel-verify-dups (2) 2019-12-09 Tom de Vries * dwz.c (dwz_options, usage): Add --devel-verify-dups entry. --- dwz.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dwz.c b/dwz.c index 1a1186d..9f28186 100644 --- a/dwz.c +++ b/dwz.c @@ -13342,6 +13342,7 @@ static struct option dwz_options[] = { "devel-unoptimized-multifile", no_argument, &unoptimized_multifile, 1 }, { "devel-verify-edges",no_argument, &verify_edges_p, 1 }, + { "devel-verify-dups", no_argument, &verify_dups_p, 1 }, { "devel-dump-edges", no_argument, &dump_edges_p, 1 }, { "devel-partition-dups-opt", no_argument, &partition_dups_opt, 1 }, @@ -13369,6 +13370,7 @@ usage (void) " --devel-save-temps\n" " --devel-dump-dies\n" " --devel-unoptimized-multifile\n" + " --devel-verify-dups\n" " --devel-verify-edges\n" " --devel-dump-edges\n" " --devel-partition-dups-opt\n"