]> git.sur5r.net Git - cc65/commitdiff
Avoid GCC "unconst" warning.
authorOliver Schmidt <ol.sc@web.de>
Thu, 13 Jun 2013 13:26:17 +0000 (15:26 +0200)
committerOliver Schmidt <ol.sc@web.de>
Thu, 13 Jun 2013 13:26:17 +0000 (15:26 +0200)
src/cc65/codeent.c
src/cc65/codeent.h

index 7372af338c19f18ded64acfbc9f0829e5fdf4415..21eef8fe5e0dbd465cb7df86d8e07c231d52ae7b 100644 (file)
@@ -412,7 +412,7 @@ int CE_IsKnownImm (const CodeEntry* E, unsigned long Num)
 
 
 
-int CE_UseLoadFlags (const CodeEntry* E)
+int CE_UseLoadFlags (CodeEntry* E)
 /* Return true if the instruction uses any flags that are set by a load of
  * a register (N and Z).
  */
@@ -427,7 +427,7 @@ int CE_UseLoadFlags (const CodeEntry* E)
         while (E->Info & OF_UBRA) {
 
             /* Remember the entry so we can detect loops */
-            CollAppend (&C, (void*) E);
+            CollAppend (&C, E);
 
             /* Check the target */
             if (E->JumpTo == 0 || CollIndex (&C, E->JumpTo->Owner) >= 0) {
index 634034c6b0adcee1f5e1fccbcbe94e648796ef16..72ce626bb4f956cf336237a938b7e888efb6dec8 100644 (file)
@@ -219,7 +219,7 @@ INLINE int CE_IsCallTo (const CodeEntry* E, const char* Name)
 #  define CE_IsCallTo(E, Name) ((E)->OPC == OP65_JSR && strcmp ((E)->Arg, (Name)) == 0)
 #endif
 
-int CE_UseLoadFlags (const CodeEntry* E);
+int CE_UseLoadFlags (CodeEntry* E);
 /* Return true if the instruction uses any flags that are set by a load of
  * a register (N and Z).
  */