]> git.sur5r.net Git - cc65/commitdiff
Comment out the RegVal function using #if to get rid of the compiler warning
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 26 Sep 2009 18:54:00 +0000 (18:54 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 26 Sep 2009 18:54:00 +0000 (18:54 +0000)
about an unused function.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4237 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/coptind.c

index 2dd0aaa546b63eeec117eae47c3938a280cdeacd..cf43d44b1f0fb1c3174a1b9be56fac9a5e902050 100644 (file)
@@ -183,7 +183,8 @@ static short ZPRegVal (unsigned short Use, const RegContents* RC)
 }
 
 
-
+               
+#if 0   /* Currently unused */
 static short RegVal (unsigned short Use, const RegContents* RC)
 /* Return the contents of the given register */
 {
@@ -197,6 +198,7 @@ static short RegVal (unsigned short Use, const RegContents* RC)
         return ZPRegVal (Use, RC);
     }
 }
+#endif