* as/z80/z80mch.c: fixed bug #1704376: missing as-z80 errors
[fw/sdcc] / src / pic16 / pcodeflow.c
index 8beaac4c921f64ed58caeb8c502d24e724ee902b..fc8ec86c182a2e9d7e11a3e327a3ec72f46cadda 100644 (file)
@@ -1,6 +1,6 @@
 /*-------------------------------------------------------------------------
 
-   pcodeflow.c - post code generation flow analysis
+  pcodeflow.c - post code generation flow analysis
 
    Written By -  Scott Dattalo scott@dattalo.com
    Ported to PIC16 By -  Martin Dubuc m.dubuc@rogers.com
@@ -155,7 +155,6 @@ void pic16_BuildFlowTree(pBlock *pb)
 
   dbg_dumpFlowTree(FlowTree);
 }
-#endif
 
 static void dbg_dumpFlow(pBlock *pb)
 {
@@ -182,12 +181,13 @@ static void dbg_dumpFlow(pBlock *pb)
       fprintf(stderr,"\n");
     }
   }
-
 }
+#endif
+
+#if 0
 /*-----------------------------------------------------------------*
  * void BuildFlowSegment(set *segment, pCodeFlow *pcflow)
  *-----------------------------------------------------------------*/
-
 static void BuildFlowSegment(pCodeFlow *pcflow)
 {
   static int recursion=0;
@@ -280,6 +280,7 @@ static void BuildFlowSegment(pCodeFlow *pcflow)
   }
 
 }
+#endif
 
 void pic16_BuildFlowTree(pBlock *pb)
 {