diff options
author | Jan Beulich <jbeulich@suse.com> | 2024-07-19 11:56:46 +0200 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2024-07-19 11:56:46 +0200 |
commit | 1cc4b7d755afd8cce917ca43d2db18a7442b468a (patch) | |
tree | 657b6ec430d079c84475bc8503265d83072f6514 /gas/config/bfin-lex.l | |
parent | a1b7023447d19d70bc36d71b7627f457dbfae5ce (diff) | |
download | gdb-1cc4b7d755afd8cce917ca43d2db18a7442b468a.zip gdb-1cc4b7d755afd8cce917ca43d2db18a7442b468a.tar.gz gdb-1cc4b7d755afd8cce917ca43d2db18a7442b468a.tar.bz2 |
bfin: drop _ASSIGN_BANG
A few testcases demonstrate that "=!" isn't supposed to be an
individual token, since "= !" is used in a number of places. So far
lexing that to a single token worked because of the scrubber being
overly aggressive in removing whitespace. As that's going to change,
replace uses by separate ASSIGN and BANG.
Diffstat (limited to 'gas/config/bfin-lex.l')
-rw-r--r-- | gas/config/bfin-lex.l | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gas/config/bfin-lex.l b/gas/config/bfin-lex.l index a14e25b..62a760c 100644 --- a/gas/config/bfin-lex.l +++ b/gas/config/bfin-lex.l @@ -287,7 +287,6 @@ int yylex (void); "%" return PERCENT; "!" return BANG; ";" return SEMICOLON; -"=!" return _ASSIGN_BANG; "||" return DOUBLE_BAR; "@" return AT; <KEYWORD>[pP][rR][eE][fF][eE][tT][cC][hH] return PREFETCH; |