From: Jan Beulich Date: Thu, 28 Mar 2024 10:54:25 +0000 (+0100) Subject: gas: drop dead check for double quote X-Git-Tag: gdb-15-branchpoint~574 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=09be89098e3a85785429130030842d4ab11e57e5;p=thirdparty%2Fbinutils-gdb.git gas: drop dead check for double quote FB and dollar label definitions can't be enclosed in double quotes. In fact at that point nul_char is the same as next_char, which we know is a digit. --- diff --git a/gas/read.c b/gas/read.c index 61a3f172674..8026a6cdb65 100644 --- a/gas/read.c +++ b/gas/read.c @@ -1262,9 +1262,6 @@ read_a_source_file (const char *name) temp = next_char - '0'; - if (nul_char == '"') - ++ input_line_pointer; - /* Read the whole number. */ while (ISDIGIT (*input_line_pointer)) {