Merge pull request #2096 from Movax12/BugFix-for-ismnemonic-function

Bugfix for the .ISMNEMONIC, .ISMNEM builtin function
This commit is contained in:
Bob Andrews
2023-05-06 21:42:59 +02:00
committed by GitHub
2 changed files with 847 additions and 1 deletions

View File

@@ -496,7 +496,7 @@ static ExprNode* FuncIsMnemonic (void)
/* Skip the name */
NextTok ();
return GenLiteralExpr (Instr > 0);
return GenLiteralExpr (Instr >= 0);
}