From cce6d886ba97eae88818330fc70f17d54f0601da Mon Sep 17 00:00:00 2001 From: Marat Omarov Date: Fri, 12 Jan 2024 15:09:56 +0300 Subject: [PATCH] Returned the compilation stages to the places for running tests on CI --- compiler/compiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/compiler.cpp b/compiler/compiler.cpp index 98ff1101e1..25ec2cf3dc 100644 --- a/compiler/compiler.cpp +++ b/compiler/compiler.cpp @@ -248,6 +248,7 @@ bool compiler_execute(CompilerSettings *settings) { >> PassC{} >> PassC{} >> PassC{} + >> PipeC{} >> SyncC{} // from this point, @param/@return are parsed in all functions, we can calculate and use assumptions // lambdas don't traverse this part of pipeline — they are processed by containing functions as vertices @@ -255,7 +256,6 @@ bool compiler_execute(CompilerSettings *settings) { // do NOT insert any pipe before, see DeduceImplicitTypesAndCastsPass::check_function() >> PassC{} >> PipeC{} >> use_nth_output_tag<0>{} - >> PipeC{} >> SyncC{} >> PipeC{} >> PassC{}