mirror of
https://github.com/cc65/cc65.git
synced 2025-01-03 16:33:19 +00:00
revert 6096a24
- this breaks the case when the "label" is an expression containing spaces.
fixes bug #1853
This commit is contained in:
parent
5493c9e7c2
commit
fd6d00a4dd
@ -399,10 +399,7 @@ static CodeEntry* ParseInsn (CodeSeg* S, LineInfo* LI, const char* L)
|
||||
|
||||
default:
|
||||
/* Absolute, maybe indexed */
|
||||
L = ReadToken (L, ", ", Arg, sizeof (Arg));
|
||||
if (*L == ' ') {
|
||||
L = SkipSpace (L+1);
|
||||
}
|
||||
L = ReadToken (L, ",", Arg, sizeof (Arg));
|
||||
if (*L == '\0') {
|
||||
/* Absolute, zeropage or branch */
|
||||
if ((OPC->Info & OF_BRA) != 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user