]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 30 May 2000 17:40:38 +0000 (17:40 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 30 May 2000 17:40:38 +0000 (17:40 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@15 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/stmt.c

index d04dc3064e82f81fb6d661d6244fc41d1c05f295..d6560463ae863b4c0c5c459583feea8459ab34a0 100644 (file)
@@ -497,7 +497,7 @@ static void tableswitch (struct expent* eval)
     g_switch (flags);
 
     /* First entry is negative of label count */
-    g_defdata (CF_INT, -((int)lcount)-1, 0);
+    g_defdata (CF_INT | CF_CONST, -((int)lcount)-1, 0);
 
     /* Create the case selector table */
     AddCodeHint ("casetable");