Skip to content

Commit

Permalink
Increase function limit to 8192
Browse files Browse the repository at this point in the history
  • Loading branch information
Korshun committed Jun 22, 2016
1 parent 1c43ec3 commit 42506c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions acc.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ static void DisplayBanner(void)
fprintf(stderr, "Some additions by Michael \"Necromage\" Weber\n");
fprintf(stderr, "Error reporting improvements and limit expansion by Ty Halderman\n");
fprintf(stderr, "Include paths added by Pascal vd Heiden\n");
fprintf(stderr, "Function count limit increased to %d by Korshun\n", MAX_FUNCTION_COUNT);
}

//==========================================================================
Expand Down
3 changes: 2 additions & 1 deletion common.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
// Added Ty 07Jan2000 for error details
#define MAX_STATEMENT_LENGTH 4096

#define MAX_FUNCTION_COUNT 256
// Was 256, increased by Korshun
#define MAX_FUNCTION_COUNT 8192

#define MAX_IMPORTS 256

Expand Down

0 comments on commit 42506c4

Please sign in to comment.