We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f16f1c9 commit 16a0c61Copy full SHA for 16a0c61
src/ops.c
@@ -1102,8 +1102,9 @@ v_equ(char *str, MNEMONIC *dummy)
1102
if (lab->value != sym->value)
1103
{
1104
asmerr( ERROR_EQU_VALUE_MISMATCH, false, NULL );
1105
- printf("INFO: Label '%s' changed from $%04lx to $%04lx\n",
1106
- Av[0], lab->value, sym->value);
+ if ( bTrace )
+ printf("INFO: Label '%s' changed from $%04lx to $%04lx\n",
1107
+ Av[0], lab->value, sym->value);
1108
++Redo;
1109
Redo_why |= REASON_EQU_VALUE_MISMATCH;
1110
}
0 commit comments