x86/gas: replace inappropriate assertion when parsing registers
authorJan Beulich <jbeulich@suse.com>
Thu, 16 Feb 2023 08:40:08 +0000 (09:40 +0100)
committerJan Beulich <jbeulich@suse.com>
Thu, 16 Feb 2023 08:40:08 +0000 (09:40 +0100)
commit0ccade1ae2c00337d2b0bba2a175a060b93728a8
tree8f217dc8f76b2c23d8d0697428f0645338d5b34e
parent42dcffb469863cafa6d669c1763aabd5b0fadc7e
x86/gas: replace inappropriate assertion when parsing registers

PR gas/30117
Once a symbol had its expression evaluated, the "segment" of the symbol
may be reg_section if a register is merely involved in the expression,
not just when the expression references a "plain" register. Therefore
the first of the assertions put in place by 4d1bb7955a8b was too strict.
Convert it to an if() to deal with situations like this one found by
fuzzing:

x=s
s=%eax+0
y=s
or $6,x

In non-debug builds this also avoids potentially silently generating bad
code.
gas/config/tc-i386.c