-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ssa): Remove dead code + modify visibility of modules to match …
…usage (#786) * make all modules not needed outside of SSA private * Remove dead code * document `as_u32` and link to issue about its soundness
- Loading branch information
1 parent
71b179c
commit f979918
Showing
7 changed files
with
25 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
pub mod acir_gen; | ||
pub mod anchor; | ||
pub mod block; | ||
pub mod builtin; | ||
mod anchor; | ||
mod block; | ||
mod builtin; | ||
pub mod code_gen; | ||
pub mod conditional; | ||
pub mod context; | ||
pub mod flatten; | ||
pub mod function; | ||
pub mod inline; | ||
pub mod integer; | ||
pub mod mem; | ||
mod conditional; | ||
mod context; | ||
mod flatten; | ||
mod function; | ||
mod inline; | ||
mod integer; | ||
mod mem; | ||
pub mod node; | ||
pub mod optimizations; | ||
pub mod ssa_form; | ||
mod optimizations; | ||
mod ssa_form; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters