What was I thinking?
[fw/sdcc] / src / SDCC.lex
index b67cda3da8f7c1fd7747e2eb381e20574cea6955..a7ba72a729a170eb8f0c89a3bc2b2db134bb6685 100644 (file)
@@ -77,7 +77,8 @@ struct options  save_options  ;
      P_CALLEE_SAVES,
      P_EXCLUDE   ,
      P_LOOPREV   ,
-     P_OVERLAY
+     P_OVERLAY_             /* I had a strange conflict with P_OVERLAY while */
+                    /* cross-compiling for MINGW32 with gcc 3.2 */
  };
 
 %}
@@ -460,7 +461,7 @@ void doPragma (int op, char *cp)
     case P_LOOPREV:
        optimize.noLoopReverse = 1;
        break;
-    case P_OVERLAY:
+    case P_OVERLAY_:
        break; /* notyet */
     }
 }