Skip to content

Commit

Permalink
conv: Add dependency to irs to llvm pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
xlauko committed Jan 24, 2024
1 parent e04a556 commit 387fef0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/vast/Conversion/Common/Passes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ namespace vast::conv::pipeline {

pipeline_step_ptr irs_to_llvm() {
// TODO add dependencies
return pass(createIRsToLLVMPass);
return pass(createIRsToLLVMPass)
.depends_on(to_ll);
}

} // namespace vast::conv::pipeline

0 comments on commit 387fef0

Please sign in to comment.