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