Don't warn on use of CCFLAGS
[p5sagit/p5-mst-13.2.git] / run.c
diff --git a/run.c b/run.c
index a952dac..0e0fd1c 100644 (file)
--- a/run.c
+++ b/run.c
@@ -27,6 +27,8 @@ runops() {
     runlevel++;
 
     while ( op = (*op->op_ppaddr)() ) ;
+
+    TAINT_NOT;
     return 0;
 }
 
@@ -54,6 +56,8 @@ runops() {
            DEBUG_P(debprof(op));
        }
     } while ( op = (*op->op_ppaddr)() );
+
+    TAINT_NOT;
     return 0;
 }