Skip to content

Commit 3f2dd00

Browse files
committed
Moved reusable labels max to storage.h, and increased it to 4096
1 parent 30b5334 commit 3f2dd00

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

storage.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#include "stdafx.h"
22

3-
#define MAX_REUSABLES 512
4-
53
#include "spasm.h"
64
#include "storage.h"
75
#include "utils.h"

storage.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#define MAX_ARGS 16 //max number of args macros can have
1313
#define MAX_LABELS 65521 //prime number for hash table
1414
#define MAX_DEFINES 65521 //prime number for hash table
15+
#define MAX_REUSABLES 4096 //max number of reusable labels
1516

1617
//used for defines and macros
1718
typedef struct define {

0 commit comments

Comments
 (0)