From 9fa5209175dffb881e8ec6c5f6ad4fc54448244a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 13 Aug 2015 14:48:41 +0200 Subject: Rework postponed logic Specifically, now postponed is only used by the execution mode logic and rules should not return it directly. --- build/b.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'build/b.cxx') diff --git a/build/b.cxx b/build/b.cxx index fea5690..5500c9e 100644 --- a/build/b.cxx +++ b/build/b.cxx @@ -744,6 +744,7 @@ main (int argc, char* argv[]) current_inner_oif = pre_oif; current_outer_oif = oif; current_mode = pre_oif->mode; + dependency_count = 0; action a (mid, pre_oid, oid); @@ -760,6 +761,7 @@ main (int argc, char* argv[]) current_inner_oif = oif; current_outer_oif = nullptr; current_mode = oif->mode; + dependency_count = 0; action a (mid, oid, 0); @@ -777,6 +779,7 @@ main (int argc, char* argv[]) current_inner_oif = post_oif; current_outer_oif = oif; current_mode = post_oif->mode; + dependency_count = 0; action a (mid, post_oid, oid); -- cgit v1.1