public inbox for binutils-cvs@sourceware.org help / color / mirror / Atom feed
From: Alan Modra <amodra@sourceware.org> To: bfd-cvs@sourceware.org Subject: [binutils-gdb] gas: itbl_files Date: Sat, 9 Jul 2022 12:35:55 +0000 (GMT) [thread overview] Message-ID: <20220709123555.B2572384B128@sourceware.org> (raw) https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=f1307e43df8e1784416822e6dd67cb2f4215bc1f commit f1307e43df8e1784416822e6dd67cb2f4215bc1f Author: Alan Modra <amodra@gmail.com> Date: Thu Jul 7 20:19:44 2022 +0930 gas: itbl_files itbl_files seems to be debug code. Get rid of it. * as.c (struct itbl_file_list): Delete. (itbl_files): Delete. (parse_args): Don't keep itbl_files list. Diff: --- gas/as.c | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/gas/as.c b/gas/as.c index 49a44863001..8b2b3e8d33f 100644 --- a/gas/as.c +++ b/gas/as.c @@ -122,16 +122,6 @@ static char *listing_filename = NULL; static struct defsym_list *defsyms; -#ifdef HAVE_ITBL_CPU -/* Keep a record of the itbl files we read in. */ -struct itbl_file_list -{ - struct itbl_file_list *next; - char *name; -}; -static struct itbl_file_list *itbl_files; -#endif - static long start_time; static int flag_macro_alternate; @@ -791,27 +781,19 @@ This program has absolutely no warranty.\n")); { /* optarg is the name of the file containing the instruction formats, opcodes, register names, etc. */ - struct itbl_file_list *n; - if (optarg == NULL) { as_warn (_("no file name following -t option")); break; } - n = XNEW (struct itbl_file_list); - n->next = itbl_files; - n->name = optarg; - itbl_files = n; - /* Parse the file and add the new instructions to our internal table. If multiple instruction tables are specified, the information from this table gets appended onto the existing internal table. */ - itbl_files->name = xstrdup (optarg); - if (itbl_parse (itbl_files->name) != 0) + if (itbl_parse (optarg) != 0) as_fatal (_("failed to read instruction table %s\n"), - itbl_files->name); + optarg); } break; #endif
reply other threads:[~2022-07-09 12:35 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20220709123555.B2572384B128@sourceware.org \ --to=amodra@sourceware.org \ --cc=bfd-cvs@sourceware.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).