I made a rebase

This commit is contained in:
Meyer Simon
2025-05-06 19:35:49 -04:00
parent 05b347ba63
commit 8c409561b7
4 changed files with 11 additions and 5 deletions

View File

@ -1489,7 +1489,7 @@ void print_symbol_table(SymbolTable *table, FILE *file_ptr) {
if ((getFirstChild(node)) == NULL) {
print_symbol_table(getFirstChild(node), file_ptr);
} else {
if (getLine(getFirstChild(node)) < 0) {
if (getLine(getFirstChild(node)) < -3) {
continue;
} else {
print_symbol_table(getFirstChild(node), file_ptr);
@ -1763,4 +1763,4 @@ int getStackSize() {
if (i % 16 != 0) i += 8;
return i;
}
}