* src/ds390/peeph.def: #237 another rule from Frieder
[fw/sdcc] / src / SDCCpeeph.c
index 2812bbc92df25069532f805e5d6a2d3a5f0074ae..070d902338c5dbcb5ac69baa2ca1199393f6d63f 100644 (file)
@@ -1011,6 +1011,12 @@ peepHole (lineNode ** pls)
   lineNode *mtail = NULL;
   bool restart;
 
+#if !OPT_DISABLE_PIC
+  /* The PIC port uses a different peep hole optimizer based on "pCode" */
+  if (TARGET_IS_PIC)
+    return;
+#endif
+
   assert(labelHash == NULL);
 
   do