]> git.sur5r.net Git - cc65/commitdiff
Fixed a few C99isms that prevented the sources to compile with Watcom-C.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 31 Aug 2009 17:15:59 +0000 (17:15 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 31 Aug 2009 17:15:59 +0000 (17:15 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4099 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/codeopt.c
src/cc65/coptind.c

index abd5fdb63a6b9448180a4d7706929961dc6f65b5..422496792c6ae4d355c4700452a96ea32a7b945d 100644 (file)
@@ -101,12 +101,13 @@ static unsigned OptShift1 (CodeSeg* S)
  */
 {
     unsigned Changes = 0;
+    unsigned I;
 
     /* Generate register info */
     CS_GenRegInfo (S);
 
     /* Walk over the entries */
-    unsigned I = 0;
+    I = 0;
     while (I < CS_GetEntryCount (S)) {
 
         CodeEntry* N;
index 95022e6c102e97ad3a3e668df18d4bd96d8c7c61..21607d0d6d7f1ac9d92b154606eff6b018d05826 100644 (file)
@@ -805,12 +805,13 @@ unsigned OptCondBranches2 (CodeSeg* S)
  */
 {
     unsigned Changes = 0;
+    unsigned I;
 
     /* Generate register info for this step */
     CS_GenRegInfo (S);
 
     /* Walk over the entries */
-    unsigned I = 0;
+    I = 0;
     while (I < CS_GetEntryCount (S)) {
 
                CodeEntry* N;