summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Zaporozhets <r_tty@yahoo.co.uk>2015-01-11 21:16:34 +0200
committerYuri Zaporozhets <r_tty@yahoo.co.uk>2015-01-11 21:16:34 +0200
commit76ee8e609168a4f2b14f0432e854c52b2ff283e4 (patch)
tree7775c103b85bec4215e919535f3a223707cb9b44
parentd4923fc6a2604ecb8b3e89fa07522c009816e58d (diff)
downloadnasm-76ee8e609168a4f2b14f0432e854c52b2ff283e4.tar.gz
rdoff: increase EXIM_LABEL_MAX to 256 bytes
Rationale: this is required for, e.g., FreePascal, which tends to generate very long labels for procedures/methods that do not fit into 64 bytes. This change does not introduce any incompatibilities. Signed-off-by: Yuri Zaporozhets <r_tty@yahoo.co.uk>
-rw-r--r--rdoff/rdoff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdoff/rdoff.h b/rdoff/rdoff.h
index a1617336..1451c6ea 100644
--- a/rdoff/rdoff.h
+++ b/rdoff/rdoff.h
@@ -52,7 +52,7 @@
#define RDOFF2_SIGNATURE "RDOFF2"
/* Maximum size of an import/export label (including trailing zero) */
-#define EXIM_LABEL_MAX 64
+#define EXIM_LABEL_MAX 256
/* Maximum size of library or module name (including trailing zero) */
#define MODLIB_NAME_MAX 128