aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2024-03-28 11:54:25 +0100
committerJan Beulich <jbeulich@suse.com>2024-03-28 11:54:25 +0100
commit09be89098e3a85785429130030842d4ab11e57e5 (patch)
tree354fce2174145d44d42698ce75d6eb674a17c5b5 /gas
parent226749d5a6ff0d5c607d6428d6c81e1e7e7a994b (diff)
downloadbinutils-09be89098e3a85785429130030842d4ab11e57e5.zip
binutils-09be89098e3a85785429130030842d4ab11e57e5.tar.gz
binutils-09be89098e3a85785429130030842d4ab11e57e5.tar.bz2
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.
Diffstat (limited to 'gas')
-rw-r--r--gas/read.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gas/read.c b/gas/read.c
index 61a3f17..8026a6c 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))
{