Skip to content

Commit

Permalink
Removing duplicate call to cyclic instantiation checker. (#12612)
Browse files Browse the repository at this point in the history
  • Loading branch information
vineethk authored Mar 20, 2024
1 parent 5e4401e commit 4045f57
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions third_party/move/move-compiler-v2/tests/testsuite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
use codespan_reporting::{diagnostic::Severity, term::termcolor::Buffer};
use log::debug;
use move_compiler_v2::{
annotate_units, ast_simplifier, check_and_rewrite_pipeline, cyclic_instantiation_checker,
disassemble_compiled_units,
annotate_units, ast_simplifier, check_and_rewrite_pipeline, disassemble_compiled_units,
env_pipeline::{
lambda_lifter, lambda_lifter::LambdaLiftingOptions, rewrite_target::RewritingScope,
spec_rewriter, EnvProcessorPipeline,
Expand Down Expand Up @@ -106,10 +105,6 @@ impl TestConfig {
// as part of regular compilation, but only as part of a prover run.
env_pipeline.add("specification rewriter", spec_rewriter::run_spec_rewriter);

env_pipeline.add("recursive instantiation check", |env| {
cyclic_instantiation_checker::check_cyclic_instantiations(env)
});

// Get path to allow path-specific test configuration
let path = path.to_string_lossy();

Expand Down

0 comments on commit 4045f57

Please sign in to comment.