diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-06-16 17:58:54 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-06-16 17:58:54 +0200 |
commit | 1c75d32ee310f02d2c04ab427ad300222cc40d86 (patch) | |
tree | db66e512a9a4dc77973b846d8a038768480b0120 | |
parent | 5c8de4f515c99d894bec764a6793352c9cad0825 (diff) |
Fix bug (forward-declared inline function)
-rw-r--r-- | build2/algorithm.cxx | 26 | ||||
-rw-r--r-- | build2/algorithm.ixx | 32 |
2 files changed, 26 insertions, 32 deletions
diff --git a/build2/algorithm.cxx b/build2/algorithm.cxx index 9310644..a55b885 100644 --- a/build2/algorithm.cxx +++ b/build2/algorithm.cxx @@ -19,6 +19,32 @@ using namespace butl; namespace build2 { + const target* + search_existing (const prerequisite& p) + { + assert (phase == run_phase::match); // Could be relaxed. + + const target* r (p.target.load (memory_order_consume)); + + if (r == nullptr) + { + const prerequisite_key& pk (p.key ()); + r = pk.proj ? import_existing (pk) : search_existing_target (pk); + + if (r != nullptr) + { + const target* e (nullptr); + if (!p.target.compare_exchange_strong ( + e, r, + memory_order_release, + memory_order_consume)) + assert (e == r); + } + } + + return r; + } + const target& search (const target& t, const prerequisite_key& pk) { diff --git a/build2/algorithm.ixx b/build2/algorithm.ixx index 4885ecf..27759c9 100644 --- a/build2/algorithm.ixx +++ b/build2/algorithm.ixx @@ -29,38 +29,6 @@ namespace build2 return *r; } - const target* - search_existing_target (const prerequisite_key&); // <build2/search.hxx> - - const target* - import_existing (const prerequisite_key&); // <build2/file.hxx> - - inline const target* - search_existing (const prerequisite& p) - { - assert (phase == run_phase::match); // Could be relaxed. - - const target* r (p.target.load (memory_order_consume)); - - if (r == nullptr) - { - const prerequisite_key& pk (p.key ()); - r = pk.proj ? import_existing (pk) : search_existing_target (pk); - - if (r != nullptr) - { - const target* e (nullptr); - if (!p.target.compare_exchange_strong ( - e, r, - memory_order_release, - memory_order_consume)) - assert (e == r); - } - } - - return r; - } - inline const target& search (const target& t, const target_type& tt, const prerequisite_key& k) { |