perl5.004 hints file (maint and dev paths)
[p5sagit/p5-mst-13.2.git] / run.c
diff --git a/run.c b/run.c
index ac9752b..d7133c7 100644 (file)
--- a/run.c
+++ b/run.c
@@ -23,7 +23,8 @@
 #endif
 
 int
-runops_standard(void) {
+runops_standard(void)
+{
     dTHR;
 
     while ( op = (CALLOP->op_ppaddr)(ARGS) ) ;
@@ -41,8 +42,12 @@ dEXT char *watchok;
 static void debprof _((OP*o));
 #endif
 
+#endif /* DEBUGGING */
+
 int
-runops_debug(void) {
+runops_debug(void)
+{
+#ifdef DEBUGGING
     dTHR;
     if (!op) {
        warn("NULL OP IN RUN");
@@ -62,11 +67,15 @@ runops_debug(void) {
 
     TAINT_NOT;
     return 0;
+#else
+    return runops_standard();
+#endif /* DEBUGGING */
 }
 
 I32
 debop(OP *o)
 {
+#ifdef DEBUGGING
     SV *sv;
     deb("%s", op_name[o->op_type]);
     switch (o->op_type) {
@@ -88,29 +97,35 @@ debop(OP *o)
        break;
     }
     PerlIO_printf(Perl_debug_log, "\n");
+#endif /* DEBUGGING */
     return 0;
 }
 
 void
 watch(char **addr)
 {
+#ifdef DEBUGGING
     watchaddr = addr;
     watchok = *addr;
     PerlIO_printf(Perl_debug_log, "WATCHING, %lx is currently %lx\n",
        (long)watchaddr, (long)watchok);
+#endif /* DEBUGGING */
 }
 
 STATIC void
 debprof(OP *o)
 {
+#ifdef DEBUGGING
     if (!profiledata)
        New(000, profiledata, MAXO, U32);
     ++profiledata[o->op_type];
+#endif /* DEBUGGING */
 }
 
 void
 debprofdump(void)
 {
+#ifdef DEBUGGING
     unsigned i;
     if (!profiledata)
        return;
@@ -119,7 +134,5 @@ debprofdump(void)
            PerlIO_printf(Perl_debug_log,
                          "%u\t%lu\n", i, (unsigned long)profiledata[i]);
     }
+#endif /* DEBUGGING */
 }
-
-#endif /* DEBUGGING */
-