Skip to content

Commit

Permalink
Ignore constant as is already processed
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianGCalderon committed May 7, 2024
1 parent d08feda commit db75c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/concrete_ir/src/lowering.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ fn lower_module(mut ctx: BuildCtx, module: &Module, id: DefId) -> Result<BuildCt

for content in &module.contents {
match content {
ModuleDefItem::Constant(_) => todo!(),
ModuleDefItem::Constant(_) => { /* already processed */ }
ModuleDefItem::Function(fn_def) => {
ctx = lower_func(ctx, fn_def, id)?;
}
Expand Down

0 comments on commit db75c86

Please sign in to comment.