mirror of
https://github.com/cc65/cc65.git
synced 2025-04-06 04:41:08 +00:00
dont add whitespace after a label to the actual label, this fixes the root cause of #1252
This commit is contained in:
parent
eb21e484ee
commit
6096a24f1d
@ -399,7 +399,10 @@ static CodeEntry* ParseInsn (CodeSeg* S, LineInfo* LI, const char* L)
|
||||
|
||||
default:
|
||||
/* Absolute, maybe indexed */
|
||||
L = ReadToken (L, ",", Arg, sizeof (Arg));
|
||||
L = ReadToken (L, ", ", Arg, sizeof (Arg));
|
||||
if (*L == ' ') {
|
||||
L = SkipSpace (L+1);
|
||||
}
|
||||
if (*L == '\0') {
|
||||
/* Absolute, zeropage or branch */
|
||||
if ((OPC->Info & OF_BRA) != 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user