diff lwasm/pragma.c @ 207:07e1fac76321

Added pragma to allow non case sensitive symbols Added "nosymbolcase" and "symbolnocase" pragmas to cause symbols defined while the pragma is in effect to be treated as case insensitive. Also documented the new pragma.
author William Astle <lost@l-w.ca>
date Sat, 09 Jun 2012 15:47:22 -0600
parents 080bb67d84f2
children 5d969517db74
line wrap: on
line diff
--- a/lwasm/pragma.c	Thu May 24 17:28:15 2012 -0600
+++ b/lwasm/pragma.c	Sat Jun 09 15:47:22 2012 -0600
@@ -57,6 +57,8 @@
 	{ "nolist", "list", PRAGMA_NOLIST },
 	{ "autobranchlength", "noautobranchlength", PRAGMA_AUTOBRANCHLENGTH },
 	{ "export", "noexport", PRAGMA_EXPORT },
+	{ "symbolnocase", "nosymbolnocase", PRAGMA_SYMBOLNOCASE },
+	{ "nosymbolcase", "symbolcase", PRAGMA_SYMBOLNOCASE },
 	{ 0, 0, 0}
 };