Skip to content

Commit

Permalink
fix: a bunch of overlooked places
Browse files Browse the repository at this point in the history
  • Loading branch information
hedgar2017 committed Nov 27, 2024
1 parent 44bec82 commit 927c7da
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[submodule "tests"]
path = tests
url = https://github.com/matter-labs/era-compiler-tests
branch = az-link-factory-dependencies
branch = main
[submodule "solidity"]
path = solidity
url = https://github.com/ethereum/solidity
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion compiler_tester/src/compilers/eravm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl Compiler for EraVMCompiler {
debug_config.clone(),
)?;
build.collect_errors()?;
let build = build.link(BTreeMap::new())?;
let build = build.link(BTreeMap::new());
build.collect_errors()?;
let builds = build
.results
Expand Down
2 changes: 1 addition & 1 deletion compiler_tester/src/compilers/llvm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ impl Compiler for LLVMCompiler {
debug_config.clone(),
)?;
build.collect_errors()?;
let build = build.link(linker_symbols)?;
let build = build.link(linker_symbols);
build.collect_errors()?;
let builds = build
.results
Expand Down
2 changes: 1 addition & 1 deletion compiler_tester/src/compilers/solidity/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ impl Compiler for SolidityCompiler {
debug_config,
)?;
build.collect_errors()?;
let build = build.link(linker_symbols)?;
let build = build.link(linker_symbols);
build.collect_errors()?;
let builds = build
.results
Expand Down
2 changes: 1 addition & 1 deletion compiler_tester/src/compilers/yul/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ impl Compiler for YulCompiler {
debug_config.clone(),
)?;
build.collect_errors()?;
let build = build.link(linker_symbols)?;
let build = build.link(linker_symbols);
build.collect_errors()?;
let builds = build
.results
Expand Down

0 comments on commit 927c7da

Please sign in to comment.