Skip to content

Commit

Permalink
chore: rename folder
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Nov 18, 2024
1 parent b4922d3 commit 6b2ddb1
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2936,7 +2936,7 @@ mod test {
use std::collections::BTreeMap;

use crate::{
acir_gen::BrilligStdlibFunc,
acir::BrilligStdlibFunc,
brillig::Brillig,
ssa::{
function_builder::FunctionBuilder,
Expand Down
9 changes: 2 additions & 7 deletions compiler/noirc_evaluator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,9 @@

pub mod errors;

mod acir_gen;

// SSA code to create the SSA based IR
// for functions and execute different optimizations.

pub mod ssa;

mod acir;
pub mod brillig;
pub mod ssa;

pub use ssa::create_program;

Expand Down
2 changes: 1 addition & 1 deletion compiler/noirc_evaluator/src/ssa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use noirc_frontend::{
use ssa_gen::Ssa;
use tracing::{span, Level};

use crate::acir_gen::{Artifacts, GeneratedAcir};
use crate::acir::{Artifacts, GeneratedAcir};

mod checks;
pub(super) mod function_builder;
Expand Down

0 comments on commit 6b2ddb1

Please sign in to comment.